Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#9263 geoprocessing tools #9316

Merged
merged 28 commits into from
Aug 11, 2023
Merged

#9263 geoprocessing tools #9316

merged 28 commits into from
Aug 11, 2023

Conversation

MV88
Copy link
Contributor

@MV88 MV88 commented Aug 1, 2023

Description

this PR implements the buffer and intersection tool. for more details see the issue

Please check if the PR fulfills these requirements

What kind of change does this PR introduce? (check one with "x", remove the others)

  • Bugfix
  • Feature
  • Code style update (formatting, local variables)
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • CI related changes
  • Other... Please describe:

Issue

What is the current behavior?

What is the new behavior?

  • you can use buffer on one layer and intersection on two layers

see issue description for more details

Breaking change

Does this PR introduce a breaking change? (check one with "x", remove the other)

  • Yes, and I documented them in migration notes
  • No

Other useful information

Testing information

It have to be tested against gs-main because of this #9316 (comment)

@MV88 MV88 requested a review from offtherailz August 1, 2023 16:36
@MV88 MV88 self-assigned this Aug 1, 2023
Copy link
Member

@offtherailz offtherailz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • I wasn't able to perform intersection image
  • If I select a raster as source (maybe I shouldn't for certain processes) and i try to select a feature, it gives me successful notification
select_feature_raster_gpt.webm
  • If I select a vector layer (e.g. on of the ones generated by 'buffer') I've got this error in console.
geoProcessingTools.js:140 TypeError: Cannot read properties of undefined (reading 'protocol')
    at isURLSameOrigin (isURLSameOrigin.js:57:24)
    at dispatchXhrRequest (xhr.js:145:50)
    at new Promise (<anonymous>)
    at xhrAdapter (xhr.js:15:10)
    at dispatchRequest (dispatchRequest.js:58:10)
  • Sometimes under certain selections, run do not re-enable after errors.
gpt_error_run.webm
  • I wasn't able to perform one intersection that works. How to do it?

@MV88 Please do a quick check of the files before to submit the review. Some of the wrong commit content can be identified quiclky by you, but it may be difficoult for the reviewer, and some may not be so clear that are not needed.

web/client/epics/Untitled-1.yml Outdated Show resolved Hide resolved
web/client/observables/wps/buffer.js Outdated Show resolved Hide resolved
web/client/observables/wps/collectGeometries.js Outdated Show resolved Hide resolved
web/client/utils/ogc/WFS/base.js Outdated Show resolved Hide resolved
web/client/selectors/longitudinalProfile.js Show resolved Hide resolved
web/client/actions/additionallayers.js Outdated Show resolved Hide resolved
@@ -55,6 +55,20 @@ export const updateOptionsByOwner = (owner, options) => {
options
};
};
/**
* merge options of additional layers selected by owner
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mergeOptionsByOwner is a little obscure as usage and name. The action looks to update every additional layer with the same owner. like updateOptionsByOwner.
I think this should be implementaed as an option of updateOptionsByOwner.
Add a 3rd optional argument to updateOptionsByOwner, named mode. By default it is 'override'. (similar to the actionType of other actions here). Other option is merge. If merge, it will merge the existing options. if override it will work as it works now.

Correct me if I'm wrong.

Copy link
Contributor Author

@MV88 MV88 Aug 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you should check the implementation of updateOptionsByOwner,
mergeOptionsByOwner goes in override and not in replace

I can refactor it if you want, but i feel it is more clear to use a different action
too many parameters and multi purpose function complicates things as well

Comment on lines 3909 to 3913
"warningTitle": "Warning",
"warningBody": "You have not selected a feature and this may slow down performances in geoserver. Do you want to continue?",
"warningConfirmText": "Yes",
"warningCancel": "Cancel",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These are not tooltips.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes in ConfirmModal of Main comp

Copy link
Member

@offtherailz offtherailz Aug 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I mean they are not tooltips, they are texts for buttons, title and body of a modal, but they are under "tooltips": section of the json.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i missed this. going to fix it

web/client/translations/data.es-ES.json Outdated Show resolved Hide resolved
web/client/utils/GeoProcessingToolsUtils.js Outdated Show resolved Hide resolved
@tdipisa tdipisa linked an issue Aug 4, 2023 that may be closed by this pull request
37 tasks
@tdipisa tdipisa added the New Feature used for new functionalities label Aug 4, 2023
@MV88
Copy link
Contributor Author

MV88 commented Aug 7, 2023

  • I wasn't able to perform intersection

wps_intersection_log_error.log

This is caused by an issue in fetching the feature collection of the highroad which is a big MultiLineString
image

here is a request to test it over gs-stable

curl --location 'https://gs-stable.geosolutionsgroup.com/geoserver/wps?service=WPS&version=1.0.0&REQUEST=Execute' \
--header 'authority: gs-stable.geosolutionsgroup.com' \
--header 'accept: application/xml, application/json' \
--header 'accept-language: en-US,en;q=0.9' \
--header 'cache-control: no-cache' \
--header 'content-type: application/xml' \
--header 'origin: http://localhost:8081' \
--header 'pragma: no-cache' \
--header 'referer: http://localhost:8081/' \
--header 'sec-ch-ua: "Not/A)Brand";v="99", "Google Chrome";v="115", "Chromium";v="115"' \
--header 'sec-ch-ua-mobile: ?0' \
--header 'sec-ch-ua-platform: "Windows"' \
--header 'sec-fetch-dest: empty' \
--header 'sec-fetch-mode: cors' \
--header 'sec-fetch-site: cross-site' \
--header 'user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36' \
--data '<?xml version="1.0" encoding="UTF-8"?>
<wps:Execute version="1.0.0" service="WPS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.opengis.net/wps/1.0.0" xmlns:wfs="http://www.opengis.net/wfs" xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:gml="http://www.opengis.net/gml" xmlns:ogc="http://www.opengis.net/ogc" xmlns:wcs="http://www.opengis.net/wcs/1.1.1" xmlns:dwn="http://geoserver.org/wps/download" xmlns:xlink="http://www.w3.org/1999/xlink" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsAll.xsd">
    <ows:Identifier>gs:IntersectionFeatureCollection</ows:Identifier>
    <wps:DataInputs>
        <wps:Input>
            <ows:Identifier>first feature collection</ows:Identifier>
            <wps:Data>
                <wps:ComplexData mimeType="application/json">
                    <![CDATA[{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"MultiLineString","coordinates":[[[-87.6245,41.8794],[-87.6456,41.8792],[-87.6689,41.8789],[-87.6706,41.8775],[-87.6458,41.8778],[-87.641,41.8779],[-87.6366,41.878],[-87.6331,41.878],[-87.6291,41.8781],[-87.626,41.8783],[-87.6174,41.8785]],[[-87.6706,41.8775],[-87.6864,41.8648],[-87.7109,41.8561],[-87.723,41.8518],[-87.737,41.8468],[-87.7432,41.845],[-87.7456,41.8439],[-87.7513,41.8418],[-87.7589,41.839],[-87.7731,41.8341],[-87.8024,41.8238],[-87.8028,41.817],[-87.805,41.8162],[-87.8083,41.8149],[-87.8104,41.8141],[-87.8122,41.8135],[-87.8149,41.8134],[-87.8168,41.8133],[-87.818,41.8131],[-87.8192,41.8121],[-87.8192,41.8111],[-87.8193,41.8099],[-87.8193,41.8081],[-87.8192,41.8061],[-87.8196,41.8051],[-87.8217,41.8041],[-87.8231,41.8034],[-87.8248,41.8025],[-87.827,41.8013],[-87.8304,41.7998],[-87.8329,41.7981],[-87.8382,41.7943],[-87.8418,41.7911],[-87.8474,41.791],[-87.854,41.7908],[-87.8588,41.7905],[-87.8584,41.7829],[-87.8798,41.7731],[-87.8849,41.7711],[-87.8874,41.7699],[-87.8928,41.7679],[-87.8949,41.767],[-87.8971,41.7658],[-87.8991,41.7647],[-87.9016,41.7633],[-87.9032,41.7627],[-87.9056,41.7614],[-87.9097,41.7599],[-87.9129,41.7581],[-87.9145,41.7572],[-87.9211,41.7544],[-87.9262,41.7524],[-87.9316,41.7499],[-87.9347,41.7477],[-87.9376,41.7455],[-87.9409,41.7433],[-87.9444,41.7415],[-87.9474,41.7405],[-87.9495,41.7397],[-87.9545,41.7378],[-87.9657,41.734],[-87.973,41.7315],[-87.9774,41.7298],[-87.9905,41.7251],[-88,41.7207],[-88.0014,41.7199],[-88.0239,41.7083],[-88.0336,41.703],[-88.0348,41.7026],[-88.0368,41.7023],[-88.0378,41.7018],[-88.0395,41.7006],[-88.0404,41.6996],[-88.0411,41.6979],[-88.0421,41.6967],[-88.0432,41.6951],[-88.0467,41.6899],[-88.0495,41.6856],[-88.0543,41.6785],[-88.0566,41.6752],[-88.0591,41.6733],[-88.0633,41.6703],[-88.0642,41.6691],[-88.0665,41.6661],[-88.0685,41.6648],[-88.0732,41.6615],[-88.0755,41.6598],[-88.0777,41.6581],[-88.0795,41.6561],[-88.0805,41.6538],[-88.0807,41.6524],[-88.0805,41.6454],[-88.0804,41.6404],[-88.0805,41.6308],[-88.0802,41.6252],[-88.0796,41.6222],[-88.0781,41.6182],[-88.0752,41.611],[-88.0753,41.6082],[-88.0756,41.6033],[-88.0751,41.6008],[-88.075,41.5965],[-88.075,41.5942],[-88.076,41.5925],[-88.079,41.5868],[-88.0827,41.5812],[-88.085,41.5753],[-88.087,41.5676],[-88.0876,41.5664],[-88.0883,41.5636],[-88.0888,41.5614],[-88.0887,41.5591],[-88.0883,41.5539],[-88.0882,41.5525],[-88.0873,41.5495],[-88.087,41.5486],[-88.0861,41.5446],[-88.0853,41.5417],[-88.0851,41.5399],[-88.0851,41.5383],[-88.0856,41.5373],[-88.0841,41.537],[-88.0821,41.5362]],[[-88.0815,41.5204],[-88.0816,41.5239],[-88.0801,41.5241],[-88.0804,41.5362],[-88.0821,41.5362],[-88.0818,41.5333],[-88.0832,41.5313],[-88.0829,41.5211],[-88.0815,41.5204]],[[-88.9002,40.5702],[-88.9009,40.572],[-88.9018,40.5738],[-88.9031,40.5726],[-88.9031,40.5716],[-88.9034,40.5702],[-88.9002,40.5702],[-88.8995,40.5683],[-88.8995,40.5668],[-88.8973,40.5678],[-88.8922,40.5692],[-88.8897,40.5703],[-88.8853,40.573],[-88.8785,40.5775],[-88.8616,40.5891],[-88.8584,40.5911],[-88.8525,40.5952],[-88.847,40.5989],[-88.8426,40.602],[-88.8371,40.6059],[-88.8272,40.6129],[-88.8223,40.6162],[-88.8122,40.6234],[-88.805,40.6283],[-88.8001,40.6317],[-88.7959,40.6347],[-88.7937,40.6366],[-88.7913,40.6383],[-88.7905,40.6397],[-88.7903,40.6408],[-88.7903,40.6427],[-88.7902,40.6439],[-88.7881,40.6458],[-88.7858,40.6471],[-88.7841,40.6479],[-88.7812,40.6498],[-88.7792,40.6514],[-88.7765,40.6556],[-88.7719,40.6631],[-88.7705,40.6656],[-88.7416,40.7125],[-88.738,40.7183],[-88.7337,40.7254],[-88.7311,40.7298],[-88.7304,40.7321],[-88.7296,40.7375],[-88.7299,40.7399],[-88.7287,40.7433],[-88.726,40.747],[-88.7232,40.749],[-88.7197,40.7509],[-88.7172,40.7532],[-88.7156,40.7548],[-88.7106,40.7622],[-88.7055,40.7703],[-88.6827,40.8071],[-88.6809,40.8101],[-88.6525,40.8554],[-88.6494,40.8606],[-88.647,40.8648],[-88.6442,40.8689],[-88.6437,40.8738],[-88.6407,40.8737],[-88.6379,40.8787],[-88.6382,40.8865],[-88.6366,40.8871],[-88.6351,40.887],[-88.6337,40.8873],[-88.6331,40.8881],[-88.6333,40.8897],[-88.6334,40.8911],[-88.6327,40.8919],[-88.6308,40.8925],[-88.6284,40.8937],[-88.6266,40.8948],[-88.6246,40.8969],[-88.6239,40.8981],[-88.622,40.9002],[-88.6188,40.9034],[-88.6164,40.9059],[-88.5949,40.9289],[-88.5901,40.9343],[-88.577,40.9482],[-88.5745,40.9509],[-88.5692,40.9562],[-88.5641,40.962],[-88.5589,40.9676],[-88.5568,40.9697],[-88.5492,40.9782],[-88.5442,40.9833],[-88.5419,40.9859],[-88.537,40.991],[-88.5339,40.9941],[-88.5307,40.9972],[-88.5289,40.9991],[-88.5281,41],[-88.5281,41],[-88.5274,41.0008],[-88.5247,41.0033],[-88.5217,41.007],[-88.5162,41.0124],[-88.5112,41.0181],[-88.5047,41.0251],[-88.4963,41.0342],[-88.4875,41.0436],[-88.4727,41.0571],[-88.46,41.0676],[-88.4512,41.0741],[-88.4441,41.0797],[-88.442,41.084],[-88.4409,41.0868],[-88.4407,41.0917],[-88.4407,41.0939],[-88.4376,41.0944],[-88.4291,41.0939],[-88.425,41.0947],[-88.4178,41.1007],[-88.407,41.1096],[-88.3924,41.1212],[-88.362,41.1461],[-88.3436,41.1604],[-88.3297,41.1721],[-88.3237,41.1756],[-88.3209,41.1786],[-88.3186,41.1828],[-88.3147,41.182],[-88.2932,41.2003],[-88.2647,41.2233],[-88.2367,41.2446],[-88.231,41.2488],[-88.2256,41.253],[-88.219,41.2582],[-88.2175,41.2595],[-88.2134,41.2621],[-88.21,41.2648],[-88.2086,41.2662],[-88.2072,41.2676],[-88.2015,41.272],[-88.1883,41.2825],[-88.1777,41.2909],[-88.1691,41.2976],[-88.1606,41.3044],[-88.1585,41.3051],[-88.1571,41.3052],[-88.152,41.3053],[-88.1507,41.3056],[-88.1499,41.3063],[-88.1488,41.307],[-88.1467,41.3078],[-88.1404,41.3099],[-88.1358,41.3112],[-88.1335,41.3119],[-88.1323,41.3128],[-88.1327,41.3202],[-88.1328,41.3249],[-88.1336,41.3532],[-88.1337,41.3586],[-88.1336,41.3658],[-88.133,41.3691],[-88.1307,41.3743],[-88.1267,41.3795],[-88.1197,41.3889],[-88.1142,41.3958],[-88.1129,41.3975],[-88.1118,41.3987],[-88.1113,41.4],[-88.1119,41.4042],[-88.0996,41.4043],[-88.0968,41.4046],[-88.0932,41.4074],[-88.0918,41.4081],[-88.09,41.4083],[-88.0817,41.4082],[-88.0791,41.4085],[-88.078,41.409],[-88.0784,41.428],[-88.0785,41.4319],[-88.0798,41.4718],[-88.0809,41.5],[-88.0809,41.5],[-88.0809,41.5022],[-88.081,41.5051],[-88.0811,41.507],[-88.0811,41.5083],[-88.0814,41.5098],[-88.0819,41.5111],[-88.0823,41.5122],[-88.0814,41.5144],[-88.0815,41.5204]],[[-88.9034,40.5702],[-88.9049,40.5686],[-88.9058,40.5676],[-88.9079,40.5647],[-88.9088,40.5614],[-88.9097,40.5573],[-88.9073,40.5589],[-88.9051,40.5612],[-88.9024,40.5648],[-88.9005,40.5663],[-88.8995,40.5668]],[[-88.9097,40.5573],[-88.9137,40.5551],[-88.9196,40.5512],[-88.9207,40.5502],[-88.923,40.5488],[-88.9252,40.5473],[-88.9273,40.5459],[-88.9306,40.544],[-88.9321,40.5432],[-88.933,40.5423],[-88.934,40.5417],[-88.937,40.5394]],[[-88.9511,40.5347],[-88.9512,40.5338],[-88.9515,40.5326],[-88.9516,40.5313],[-88.9517,40.5299],[-88.9434,40.5351],[-88.9385,40.5383],[-88.937,40.5394],[-88.9391,40.5392],[-88.9413,40.5398],[-88.9431,40.5396],[-88.9454,40.5392],[-88.9467,40.5388],[-88.9489,40.5376],[-88.9506,40.5362],[-88.9511,40.5347],[-88.9488,40.5358],[-88.9438,40.5376],[-88.9391,40.5392]],[[-88.9947,40.5018],[-88.995,40.5098],[-88.9969,40.5085],[-88.9966,40.5037],[-88.9965,40.5028],[-88.9947,40.5018]],[[-88.9947,40.5018],[-88.9946,40.5],[-88.9946,40.5],[-88.9946,40.4987],[-88.9947,40.497],[-88.995,40.4846]],[[-88.9947,40.4772],[-88.993,40.4778],[-88.9929,40.4796],[-88.993,40.4821],[-88.9933,40.4836],[-88.995,40.4846],[-88.9958,40.4833],[-88.9958,40.4818],[-88.9956,40.4783],[-88.9947,40.4772]],[[-88.9947,40.4772],[-88.9942,40.4669],[-88.9939,40.4655],[-88.9933,40.4625],[-88.993,40.4613],[-88.9931,40.459]],[[-89.0254,40.4397],[-89.0239,40.4419],[-89.0229,40.4446],[-89.0225,40.4471],[-89.0226,40.4485],[-89.0232,40.4498],[-89.0212,40.4495],[-89.0189,40.4496],[-89.0167,40.4506],[-89.0158,40.4514],[-89.0141,40.451],[-89.01,40.455],[-89.0082,40.4565],[-89.0064,40.4577],[-89.0041,40.4585],[-89.0002,40.4592],[-89,40.4592],[-88.995,40.4587],[-88.9931,40.459],[-88.9891,40.4592],[-88.9833,40.4595],[-88.9782,40.4597],[-88.9688,40.4599],[-88.9655,40.4603],[-88.9616,40.4616],[-88.9585,40.4632],[-88.9564,40.4651],[-88.9542,40.4678],[-88.9529,40.4708],[-88.9525,40.4747],[-88.9528,40.4817],[-88.9531,40.4896],[-88.9532,40.5],[-88.9532,40.5],[-88.9536,40.5114],[-88.9535,40.5131],[-88.9531,40.5178],[-88.9517,40.5299],[-88.9555,40.5274],[-88.9582,40.5257],[-88.9599,40.5252],[-88.962,40.525],[-88.968,40.525],[-88.9685,40.5237],[-88.9684,40.5228],[-88.9685,40.521],[-88.9684,40.5198],[-88.9686,40.5189],[-88.97,40.518],[-88.9736,40.5176],[-88.9778,40.5177],[-88.983,40.5178],[-88.9828,40.514],[-88.9952,40.5138],[-88.9951,40.5109],[-88.995,40.5098]],[[-89.0141,40.451],[-89.0153,40.4498],[-89.0162,40.4476],[-89.0163,40.4458],[-89.0166,40.4439],[-89.0176,40.442],[-89.0194,40.4407],[-89.0218,40.4396],[-89.0254,40.4397],[-89.0264,40.4388],[-89.0283,40.437],[-89.0306,40.4341],[-89.0266,40.4361],[-89.0241,40.4376],[-89.0218,40.4396]],[[-89.0306,40.4341],[-89.0323,40.432],[-89.0336,40.4309],[-89.0382,40.4268],[-89.0428,40.4229],[-89.0458,40.4204],[-89.0469,40.419],[-89.0478,40.4183]],[[-89.0514,40.4123],[-89.0494,40.4158],[-89.0478,40.4183],[-89.0518,40.4152],[-89.0571,40.4106],[-89.0597,40.4084]],[[-89.3382,40.1694],[-89.3382,40.1693],[-89.332,40.1745],[-89.3093,40.1944],[-89.2955,40.2061],[-89.2859,40.2143],[-89.2845,40.2154],[-89.2502,40.2459],[-89.2405,40.2534],[-89.235,40.2584],[-89.2289,40.2631],[-89.2276,40.2649],[-89.217,40.2736],[-89.2114,40.2783],[-89.2048,40.284],[-89.1971,40.2906],[-89.1912,40.2959],[-89.186,40.2997],[-89.1813,40.3043],[-89.1758,40.3089],[-89.1733,40.3116],[-89.168,40.3116],[-89.1682,40.3137],[-89.1657,40.3136],[-89.1659,40.3176],[-89.1539,40.3277],[-89.1429,40.337],[-89.1378,40.3414],[-89.1255,40.3519],[-89.1177,40.3588],[-89.1137,40.3618],[-89.1066,40.368],[-89.0993,40.3746],[-89.0951,40.3782],[-89.0918,40.3811],[-89.0883,40.3841],[-89.0837,40.388],[-89.0746,40.3958],[-89.0657,40.4034],[-89.0597,40.4084],[-89.0566,40.4084],[-89.0547,40.4099],[-89.0533,40.4108],[-89.0514,40.4123],[-89.0516,40.4096],[-89.0514,40.4081],[-89.0541,40.4084],[-89.0566,40.4084]],[[-89.3408,40.1661],[-89.3387,40.1672],[-89.3379,40.1679],[-89.3382,40.1693],[-89.3401,40.1678],[-89.3408,40.1661]],[[-89.3424,40.1644],[-89.3455,40.1638],[-89.3473,40.1638],[-89.3501,40.1639],[-89.3534,40.1639],[-89.3558,40.164],[-89.3585,40.1643],[-89.3681,40.1652],[-89.3832,40.1652],[-89.3852,40.1652],[-89.3866,40.1643],[-89.3871,40.1621],[-89.3867,40.1414],[-89.3865,40.1385],[-89.383,40.1431],[-89.3829,40.147],[-89.3671,40.1469],[-89.3598,40.1532],[-89.357,40.1515],[-89.3434,40.1632],[-89.3424,40.1644],[-89.3417,40.1652],[-89.3408,40.1661]],[[-89.3865,40.1385],[-89.3868,40.1346],[-89.3878,40.1323],[-89.3894,40.1307],[-89.39,40.1299],[-89.3914,40.1287],[-89.3934,40.1274],[-89.395,40.1256],[-89.3988,40.1209],[-89.4086,40.1094],[-89.419,40.0969],[-89.4204,40.0951],[-89.4275,40.087],[-89.434,40.0791],[-89.4401,40.0719],[-89.4497,40.0604],[-89.4589,40.0499],[-89.463,40.0454],[-89.4695,40.0377],[-89.4755,40.0306],[-89.4786,40.0267],[-89.4869,40.0182],[-89.5045,40],[-89.5045,40],[-89.5124,39.9921],[-89.5149,39.9898],[-89.5205,39.9842],[-89.5249,39.9796],[-89.5282,39.9766],[-89.5304,39.9739],[-89.5343,39.97],[-89.5372,39.9671],[-89.5399,39.9643],[-89.5419,39.9625],[-89.5443,39.9609],[-89.5468,39.9596],[-89.5486,39.9588],[-89.5509,39.9573],[-89.5529,39.9555],[-89.5557,39.9591],[-89.557,39.9575],[-89.5578,39.9553],[-89.5576,39.9529],[-89.5574,39.9504],[-89.5575,39.9476],[-89.5584,39.945],[-89.5599,39.943],[-89.5743,39.9267],[-89.5816,39.9183],[-89.5833,39.9166],[-89.5853,39.9156],[-89.588,39.9147],[-89.5902,39.9141],[-89.5918,39.9133],[-89.5942,39.9114],[-89.5953,39.9096],[-89.5964,39.9074],[-89.5964,39.9064],[-89.5961,39.905],[-89.5958,39.9031],[-89.5966,39.9016],[-89.5978,39.9002],[-89.6019,39.8962],[-89.6032,39.8949],[-89.6079,39.8896],[-89.6113,39.8855],[-89.6129,39.8827],[-89.6137,39.8806],[-89.614,39.8775],[-89.614,39.8712],[-89.6138,39.8672],[-89.614,39.8614],[-89.6143,39.8595],[-89.6156,39.8574],[-89.6164,39.8567],[-89.6191,39.8547],[-89.622,39.8528],[-89.6254,39.8506],[-89.6296,39.8478],[-89.633,39.846],[-89.6324,39.8441],[-89.6329,39.8429],[-89.6332,39.842]],[[-89.6496,39.7817],[-89.6442,39.782],[-89.6438,39.7946],[-89.6438,39.7972],[-89.6435,39.8097],[-89.6432,39.8204],[-89.6434,39.8231],[-89.6414,39.8253],[-89.6377,39.8296],[-89.6365,39.8311],[-89.6355,39.8349],[-89.6337,39.8405],[-89.6332,39.842],[-89.6454,39.8419],[-89.648,39.8414],[-89.6494,39.8402],[-89.6497,39.8382],[-89.6496,39.8308],[-89.6493,39.8189],[-89.6493,39.8162],[-89.6494,39.805],[-89.6496,39.7979],[-89.6497,39.7926],[-89.6499,39.7839],[-89.6499,39.7829],[-89.6496,39.7817]],[[-89.6496,39.7817],[-89.6489,39.7788],[-89.6493,39.7758],[-89.6499,39.7718],[-89.65,39.769],[-89.6491,39.7674],[-89.6489,39.766],[-89.6486,39.7634],[-89.6483,39.7612],[-89.6458,39.7553],[-89.6446,39.7492],[-89.6448,39.7439],[-89.6448,39.7384],[-89.6442,39.7299],[-89.6447,39.7134],[-89.644,39.7038],[-89.6432,39.699],[-89.643,39.6932],[-89.6423,39.6925],[-89.6443,39.6892],[-89.6467,39.6873],[-89.6476,39.6844],[-89.6482,39.6824],[-89.6482,39.678],[-89.6484,39.6736],[-89.6478,39.6269],[-89.6478,39.6195],[-89.6494,39.6186],[-89.6509,39.6167],[-89.6517,39.6147],[-89.6507,39.6134],[-89.6486,39.6122],[-89.6472,39.6111],[-89.6468,39.6022],[-89.6472,39.599],[-89.648,39.5953],[-89.6497,39.594],[-89.6522,39.592],[-89.6528,39.5901],[-89.6476,39.5901],[-89.6468,39.5709]],[[-89.6489,39.5678],[-89.6418,39.5682],[-89.6436,39.5695],[-89.6451,39.5701],[-89.6468,39.5709],[-89.6488,39.569],[-89.6489,39.5678]],[[-89.7666,39.0199],[-89.7702,39.0181],[-89.774,39.0163],[-89.7776,39.0145],[-89.7804,39.0132],[-89.7914,39.0131],[-89.7913,39.0112],[-89.7934,39.0114],[-89.7964,39.0112],[-89.7965,39.0093],[-89.7967,39.0077],[-89.7967,39.0058],[-89.7968,39.0023],[-89.8013,39.0018],[-89.8012,39],[-89.8012,39],[-89.8012,38.9986],[-89.8009,38.9908],[-89.8009,38.9776],[-89.8011,38.9597],[-89.8014,38.935],[-89.7982,38.9352],[-89.7914,38.9397],[-89.7899,38.9406],[-89.7875,38.9425],[-89.7568,38.9653],[-89.7561,38.9665],[-89.7558,38.968],[-89.7551,38.9693],[-89.7524,38.9696],[-89.751,38.9706],[-89.7501,38.9727],[-89.7495,38.9758],[-89.7496,38.9819],[-89.7499,38.9926],[-89.7502,38.9965],[-89.75,39],[-89.75,39],[-89.75,39.0124],[-89.75,39.0172],[-89.7508,39.0182],[-89.7521,39.0188],[-89.7535,39.0193],[-89.7546,39.0197],[-89.7557,39.0206],[-89.7589,39.0209],[-89.7632,39.0211],[-89.7666,39.0199],[-89.761,39.0252],[-89.7572,39.0288],[-89.7551,39.0308],[-89.7535,39.032],[-89.7524,39.0325],[-89.7502,39.0335],[-89.7506,39.0429],[-89.7505,39.0439],[-89.7494,39.0451],[-89.7454,39.0507],[-89.7403,39.0576],[-89.7359,39.0639],[-89.7354,39.065],[-89.7353,39.0689],[-89.7354,39.072],[-89.7351,39.0742],[-89.7354,39.0756],[-89.7347,39.0768],[-89.7336,39.0773],[-89.7275,39.0771],[-89.7227,39.077],[-89.7212,39.0771],[-89.7199,39.0776],[-89.7185,39.0789],[-89.7154,39.0828],[-89.714,39.0847],[-89.7093,39.0905],[-89.7093,39.0917],[-89.7066,39.0944],[-89.7045,39.0968],[-89.7007,39.1019],[-89.6918,39.1131],[-89.6861,39.12],[-89.6766,39.1321],[-89.6744,39.1349],[-89.6724,39.1375],[-89.6705,39.1408],[-89.6693,39.1443],[-89.6688,39.1467],[-89.6684,39.1524],[-89.6682,39.1571],[-89.6682,39.1614],[-89.668,39.175],[-89.6678,39.1778],[-89.6676,39.1808],[-89.6672,39.1828],[-89.666,39.1868],[-89.6645,39.1901],[-89.6632,39.193],[-89.6614,39.1962],[-89.6552,39.2067],[-89.6541,39.2087],[-89.6532,39.211],[-89.6525,39.2123],[-89.6511,39.2145],[-89.6491,39.2171],[-89.6462,39.2215],[-89.64,39.2326],[-89.6392,39.2338],[-89.6419,39.2341],[-89.6433,39.2343],[-89.6432,39.2353],[-89.6416,39.2364],[-89.6417,39.2428],[-89.6421,39.2734],[-89.6425,39.2746],[-89.6439,39.2754],[-89.6456,39.2761],[-89.647,39.2766],[-89.6474,39.2778],[-89.6472,39.2794],[-89.6452,39.2806],[-89.6436,39.2815],[-89.6424,39.2827],[-89.6423,39.2959],[-89.6429,39.3176],[-89.6446,39.3194],[-89.6473,39.3202],[-89.6481,39.3211],[-89.6482,39.323],[-89.6475,39.3244],[-89.646,39.3248],[-89.6446,39.3253],[-89.643,39.3274],[-89.6432,39.3482],[-89.6446,39.3495],[-89.6462,39.3524],[-89.6451,39.3547],[-89.6433,39.3566],[-89.6439,39.4184],[-89.6447,39.4429],[-89.6459,39.4431],[-89.6476,39.4435],[-89.648,39.4451],[-89.6471,39.4468],[-89.6453,39.4487],[-89.6448,39.4496],[-89.6449,39.4596],[-89.6452,39.48],[-89.6456,39.4943],[-89.6457,39.5],[-89.6457,39.5001],[-89.6476,39.563],[-89.6476,39.5644],[-89.6489,39.5654],[-89.6502,39.5659],[-89.6512,39.5666],[-89.6516,39.5678],[-89.6489,39.5678]],[[-91.9506,37.9347],[-91.9478,37.9335],[-91.9444,37.9341],[-91.9427,37.9351],[-91.9416,37.9374],[-91.9407,37.9402],[-91.9404,37.9433],[-91.9423,37.94],[-91.9436,37.9363],[-91.9466,37.9351],[-91.9506,37.9347],[-91.9506,37.9347]],[[-91.9351,37.9424],[-91.9391,37.9456],[-91.9392,37.9442],[-91.9404,37.9433],[-91.9381,37.9424],[-91.9351,37.9424],[-91.931,37.9411],[-91.9252,37.9392],[-91.9234,37.9387],[-91.914,37.9395],[-91.9119,37.9412],[-91.9095,37.9435],[-91.9066,37.9447],[-91.9047,37.9453],[-91.9013,37.9445],[-91.8989,37.9437],[-91.8947,37.9424],[-91.891,37.9405],[-91.885,37.9403],[-91.8792,37.9405],[-91.8769,37.941],[-91.871,37.9432],[-91.8671,37.9446],[-91.8572,37.9443],[-91.8544,37.9442],[-91.8522,37.9431],[-91.8505,37.9412],[-91.8492,37.9393],[-91.8478,37.9383],[-91.8449,37.9379],[-91.8424,37.9373],[-91.8404,37.935],[-91.8386,37.9332],[-91.8369,37.9323],[-91.8349,37.9344],[-91.8334,37.9364],[-91.8318,37.9372],[-91.8296,37.9376],[-91.8256,37.9383],[-91.8212,37.9379],[-91.8175,37.9389],[-91.8132,37.9393],[-91.8098,37.9401],[-91.8049,37.9407],[-91.7982,37.9412],[-91.7942,37.9426],[-91.7913,37.944],[-91.7893,37.9435],[-91.7857,37.9444],[-91.7825,37.9453],[-91.7794,37.946],[-91.7772,37.9476],[-91.7768,37.9566],[-91.7743,37.9582],[-91.7701,37.9596],[-91.7673,37.9603],[-91.7658,37.9614],[-91.7658,37.9641],[-91.7651,37.9666],[-91.7621,37.97],[-91.7614,37.971],[-91.7605,37.9721],[-91.7585,37.9736],[-91.7561,37.9754],[-91.7537,37.9771],[-91.7521,37.9783],[-91.7491,37.9797],[-91.7458,37.9803],[-91.7434,37.98],[-91.7407,37.9785],[-91.7382,37.9776],[-91.7363,37.9764],[-91.7344,37.9764],[-91.7298,37.9775],[-91.7228,37.9786],[-91.7211,37.98],[-91.7196,37.981],[-91.7156,37.9806],[-91.7131,37.981],[-91.6844,37.9851],[-91.6707,37.9869],[-91.6563,37.9899],[-91.6448,37.9927],[-91.6369,37.9941],[-91.6312,37.9972],[-91.6261,38],[-91.6236,38.0018],[-91.6209,38.0035],[-91.6187,38.0042],[-91.6161,38],[-91.6148,38],[-91.6093,38.0026],[-91.6013,38.0041],[-91.597,38.0061],[-91.5914,38.0088],[-91.5892,38.0099],[-91.5859,38.0115],[-91.5812,38.0161],[-91.5782,38.0176],[-91.5742,38.019],[-91.5713,38.0205],[-91.5676,38.022],[-91.565,38.023],[-91.5622,38.0232],[-91.5528,38.0228],[-91.5514,38.0229],[-91.5494,38.0236],[-91.5443,38.0258],[-91.5421,38.0264],[-91.5406,38.0273],[-91.5257,38.0334],[-91.5213,38.0352],[-91.5158,38.0374],[-91.5121,38.039],[-91.5099,38.0396],[-91.5042,38.0409],[-91.4991,38.0422],[-91.4936,38.0434],[-91.4905,38.0435],[-91.487,38.0435],[-91.485,38.0432],[-91.4819,38.0422],[-91.4781,38.0407],[-91.4765,38.04],[-91.4723,38.0383],[-91.4693,38.0371],[-91.4677,38.0367],[-91.4652,38.0365],[-91.462,38.0364],[-91.4552,38.0361],[-91.4533,38.0361],[-91.4511,38.0362],[-91.4486,38.0367],[-91.4457,38.0376],[-91.4427,38.0393],[-91.4409,38.0403],[-91.4373,38.0427],[-91.4347,38.0446],[-91.432,38.0472],[-91.4273,38.0519],[-91.4235,38.0558],[-91.4219,38.0571],[-91.42,38.058],[-91.4166,38.0595],[-91.4153,38.0598],[-91.4142,38.06],[-91.4092,38.0612],[-91.4039,38.0626],[-91.4002,38.0636],[-91.3972,38.0643],[-91.3925,38.0643],[-91.3874,38.0661],[-91.3845,38.0689],[-91.3825,38.0715],[-91.3792,38.0763],[-91.3765,38.0805],[-91.3748,38.0827],[-91.3728,38.0837],[-91.3701,38.0854],[-91.3691,38.0864],[-91.3674,38.0904],[-91.3658,38.0931],[-91.3639,38.0949],[-91.3627,38.0957],[-91.3603,38.0965],[-91.3572,38.0976],[-91.3531,38.0994],[-91.3503,38.101],[-91.3463,38.1041],[-91.3432,38.106],[-91.3411,38.1074],[-91.3384,38.1083],[-91.3366,38.1088],[-91.3353,38.1093],[-91.3337,38.1096],[-91.3309,38.1118],[-91.3296,38.1125],[-91.3277,38.1136],[-91.3232,38.1158],[-91.3192,38.1175],[-91.3171,38.1182],[-91.3142,38.1183],[-91.3128,38.1183],[-91.3114,38.1189],[-91.3103,38.1209],[-91.3088,38.1235],[-91.3055,38.1266],[-91.3047,38.1274],[-91.3042,38.1285],[-91.3034,38.1295],[-91.3025,38.1302],[-91.3004,38.1305],[-91.2985,38.1308],[-91.2969,38.1312],[-91.2958,38.1316],[-91.2948,38.1321],[-91.2923,38.1332],[-91.291,38.1335],[-91.2893,38.1344],[-91.2878,38.1348],[-91.2861,38.1356],[-91.2816,38.1357],[-91.2795,38.1356],[-91.2762,38.1354],[-91.2725,38.1351],[-91.2692,38.1352],[-91.2676,38.135],[-91.2654,38.135],[-91.2638,38.1354],[-91.2603,38.1388],[-91.2596,38.1398],[-91.2579,38.1437],[-91.257,38.1443],[-91.2526,38.1465],[-91.2514,38.1471],[-91.2506,38.1481],[-91.2497,38.1493],[-91.249,38.1504],[-91.2479,38.152],[-91.2481,38.1532],[-91.248,38.1542],[-91.2465,38.1567],[-91.245,38.1577],[-91.2428,38.1576],[-91.239,38.1576],[-91.2353,38.1577],[-91.2335,38.1582],[-91.2315,38.1608],[-91.2293,38.1622],[-91.2269,38.1629],[-91.2232,38.1638],[-91.2206,38.1648],[-91.2173,38.1679],[-91.2139,38.1725],[-91.21,38.1763],[-91.2044,38.1809],[-91.2032,38.1814],[-91.2016,38.182],[-91.2001,38.1823],[-91.1986,38.1824],[-91.1971,38.1831],[-91.1955,38.1842],[-91.1948,38.1857],[-91.1939,38.1869],[-91.1914,38.1894],[-91.1884,38.1918],[-91.1865,38.1932],[-91.1858,38.194],[-91.1847,38.1952],[-91.1826,38.197],[-91.1807,38.1986],[-91.1793,38.2003],[-91.1782,38.2018],[-91.1772,38.2038],[-91.1761,38.2052],[-91.1747,38.2062],[-91.1729,38.2077],[-91.1719,38.2084],[-91.1704,38.2102],[-91.1691,38.2117],[-91.1671,38.2128],[-91.1656,38.2135],[-91.1645,38.2137],[-91.1615,38.2141],[-91.1574,38.2157],[-91.1561,38.2166],[-91.155,38.2177],[-91.154,38.2185],[-91.1532,38.22],[-91.1523,38.2223],[-91.1519,38.224],[-91.1502,38.2264],[-91.1489,38.2283],[-91.1489,38.2306],[-91.1477,38.2317],[-91.147,38.2325],[-91.1463,38.2339],[-91.1439,38.235],[-91.1417,38.2374],[-91.1409,38.2388],[-91.1407,38.2401],[-91.1402,38.2417],[-91.1397,38.2429],[-91.1385,38.2442],[-91.1376,38.2454],[-91.1349,38.2491],[-91.133,38.2512],[-91.1305,38.2529],[-91.127,38.2548],[-91.1244,38.2563],[-91.1231,38.2569],[-91.1207,38.2581],[-91.1189,38.2597],[-91.1177,38.2608],[-91.1157,38.2623],[-91.114,38.2635],[-91.1124,38.2645],[-91.1095,38.2669],[-91.1078,38.2683],[-91.1078,38.2696],[-91.1085,38.2713],[-91.1079,38.2728],[-91.1046,38.2816],[-91.1034,38.2878],[-91.1027,38.2921],[-91.1025,38.2943],[-91.1016,38.2963],[-91.0993,38.298],[-91.0955,38.2996],[-91.0895,38.3015],[-91.0838,38.3035],[-91.0823,38.3038],[-91.0795,38.3033],[-91.0777,38.303],[-91.0745,38.3029],[-91.0727,38.303],[-91.0702,38.3039],[-91.0671,38.3056],[-91.0637,38.3084],[-91.0626,38.3109],[-91.0618,38.3126],[-91.059,38.314],[-91.0577,38.3148],[-91.0564,38.3149],[-91.0548,38.3149],[-91.05,38.3163],[-91.0424,38.3181],[-91.039,38.3188],[-91.0381,38.3198],[-91.0372,38.3206],[-91.0356,38.3208],[-91.0338,38.3206],[-91.0293,38.3226],[-91.0278,38.3238],[-91.0256,38.3257],[-91.0239,38.3276],[-91.0221,38.3294],[-91.0202,38.3316],[-91.0197,38.3329],[-91.0188,38.3355],[-91.0172,38.3372],[-91.016,38.3382],[-91.0139,38.3391],[-91.0109,38.3396],[-91.0075,38.3401],[-91.0053,38.34],[-91.0042,38.3398],[-91.0024,38.34],[-91,38.3404],[-90.9973,38.341],[-90.9956,38.3412],[-90.9939,38.341],[-90.9918,38.3414],[-90.9901,38.343],[-90.9886,38.3452],[-90.9872,38.3477],[-90.9846,38.3498],[-90.9821,38.3519],[-90.9793,38.3532],[-90.9768,38.3548],[-90.9765,38.3557],[-90.9773,38.3595],[-90.9793,38.362],[-90.9765,38.3645],[-90.9744,38.3676],[-90.9724,38.3718],[-90.9704,38.3769],[-90.9682,38.3799],[-90.9654,38.382],[-90.9635,38.3828],[-90.9529,38.3857],[-90.9477,38.3872],[-90.9447,38.389],[-90.943,38.3904],[-90.9404,38.3936],[-90.9376,38.3955],[-90.9356,38.3966],[-90.9335,38.3971],[-90.9314,38.3978],[-90.9288,38.3996],[-90.9275,38.4035],[-90.9267,38.4082],[-90.9257,38.4135],[-90.9247,38.4153],[-90.9225,38.4182],[-90.9186,38.4223],[-90.9162,38.4249],[-90.9152,38.4262],[-90.9142,38.4288],[-90.9141,38.4311],[-90.9141,38.4336],[-90.9139,38.4349],[-90.9138,38.4371],[-90.9126,38.4374],[-90.9107,38.4384],[-90.9068,38.4415],[-90.9065,38.4435],[-90.9066,38.4467],[-90.9063,38.4481],[-90.9056,38.4498],[-90.9045,38.4504],[-90.9023,38.4516],[-90.9005,38.4524],[-90.8981,38.4531],[-90.8958,38.4535],[-90.894,38.4539],[-90.8916,38.4545],[-90.8899,38.456],[-90.889,38.4572],[-90.886,38.4576],[-90.8841,38.4574],[-90.8822,38.4573],[-90.8807,38.458],[-90.8787,38.4593],[-90.8664,38.4657],[-90.8651,38.4663],[-90.8627,38.4665],[-90.8613,38.4666],[-90.8597,38.4671],[-90.8581,38.4688],[-90.8573,38.4701],[-90.8569,38.4716],[-90.8565,38.4732],[-90.856,38.474],[-90.8547,38.4745],[-90.8522,38.4759],[-90.8515,38.4775],[-90.8512,38.4792],[-90.8508,38.4804],[-90.85,38.4812],[-90.8488,38.4817],[-90.8475,38.4815],[-90.846,38.4811],[-90.844,38.4807],[-90.8407,38.481],[-90.8358,38.4817],[-90.8328,38.4812],[-90.8307,38.481],[-90.8287,38.4812],[-90.8249,38.4826],[-90.8225,38.483],[-90.8097,38.4854],[-90.8046,38.4861],[-90.8024,38.4863],[-90.7966,38.4863],[-90.7925,38.4863],[-90.7903,38.4868],[-90.786,38.4873],[-90.7794,38.487],[-90.7774,38.4869],[-90.7748,38.4865],[-90.7729,38.4856],[-90.771,38.4847],[-90.7689,38.4843],[-90.7663,38.4845],[-90.7641,38.4846],[-90.7622,38.4847],[-90.7604,38.4848],[-90.7587,38.4846],[-90.7563,38.4846],[-90.7526,38.4841],[-90.7487,38.4841],[-90.7411,38.4841],[-90.7332,38.4842],[-90.7281,38.4841],[-90.7258,38.4839],[-90.7232,38.483],[-90.721,38.4822],[-90.7185,38.4817],[-90.7161,38.4812],[-90.7141,38.4808],[-90.7117,38.4806],[-90.7079,38.481],[-90.7059,38.4821],[-90.7017,38.4861],[-90.6934,38.4943],[-90.6885,38.5],[-90.6885,38.5],[-90.6868,38.5023],[-90.6848,38.5035],[-90.6812,38.5043],[-90.6772,38.5047],[-90.6731,38.5045],[-90.6674,38.5042],[-90.6615,38.5042],[-90.6498,38.5038],[-90.6421,38.504],[-90.6362,38.5055],[-90.6303,38.5071],[-90.626,38.5069],[-90.6226,38.5066],[-90.6176,38.5059],[-90.6125,38.5049],[-90.6046,38.5031],[-90.5957,38.5028],[-90.5878,38.5054],[-90.5855,38.506],[-90.5812,38.5057],[-90.5759,38.5067],[-90.5727,38.5076],[-90.5714,38.5081],[-90.5692,38.5082],[-90.5671,38.5081],[-90.5643,38.5078],[-90.5612,38.5077],[-90.5589,38.508],[-90.5576,38.5083],[-90.5548,38.5102],[-90.5522,38.5139],[-90.5513,38.5154],[-90.5502,38.5163],[-90.5476,38.5184],[-90.5462,38.5217],[-90.5449,38.5245],[-90.5432,38.5267],[-90.5408,38.5279],[-90.538,38.5281],[-90.5331,38.5287],[-90.5311,38.5301],[-90.5274,38.5322],[-90.5218,38.5337],[-90.5156,38.5363],[-90.5108,38.537],[-90.5002,38.5389],[-90.4971,38.5391],[-90.4944,38.5401],[-90.4919,38.5402],[-90.4901,38.54],[-90.487,38.5397],[-90.4832,38.5399],[-90.4793,38.5408],[-90.4777,38.5412],[-90.4727,38.5426],[-90.4699,38.5433],[-90.4662,38.5435],[-90.4615,38.5431],[-90.4384,38.5427],[-90.4357,38.5435],[-90.431,38.5451],[-90.4273,38.5482],[-90.4257,38.5501],[-90.4241,38.5509],[-90.4214,38.5519],[-90.4168,38.5536],[-90.4093,38.5554],[-90.4078,38.5555],[-90.4001,38.556],[-90.3921,38.5566],[-90.3828,38.5573],[-90.3814,38.5575],[-90.3781,38.5584],[-90.3721,38.5608],[-90.3659,38.5634],[-90.3628,38.5643],[-90.3598,38.5647],[-90.3428,38.5677],[-90.3402,38.5681],[-90.3365,38.5704],[-90.3313,38.5751],[-90.3288,38.5778],[-90.3267,38.5796],[-90.3249,38.5804],[-90.3225,38.5807],[-90.3205,38.5817],[-90.3179,38.5838],[-90.3141,38.5866],[-90.3117,38.5878],[-90.3094,38.5888],[-90.2988,38.5939],[-90.2836,38.5926],[-90.2758,38.5916],[-90.274,38.5918],[-90.2604,38.5903],[-90.2556,38.5897],[-90.2509,38.5918],[-90.2446,38.5924],[-90.2435,38.5929],[-90.2372,38.5977],[-90.2338,38.6001],[-90.23,38.6022],[-90.2263,38.6035],[-90.2228,38.6051],[-90.2209,38.6065],[-90.2167,38.6073],[-90.2119,38.6087],[-90.2096,38.6095],[-90.2078,38.6108],[-90.2052,38.6142],[-90.2028,38.6165],[-90.2014,38.6201],[-90.1993,38.6251],[-90.1938,38.642],[-90.1966,38.6433],[-90.2035,38.6563],[-90.2095,38.6579],[-90.2061,38.659],[-90.2037,38.6599],[-90.1997,38.6611],[-90.1974,38.6618],[-90.1932,38.6632],[-90.1913,38.6637],[-90.1798,38.6655],[-90.1779,38.666],[-90.1759,38.6674],[-90.1748,38.6695],[-90.1754,38.6709],[-90.1758,38.6721],[-90.1754,38.6739],[-90.1745,38.6753],[-90.1741,38.6766],[-90.1712,38.6863],[-90.1678,38.6926],[-90.1676,38.6988],[-90.1669,38.7119],[-90.1605,38.7158],[-90.1513,38.7269],[-90.1469,38.7314],[-90.1408,38.7341],[-90.137,38.7319],[-90.1236,38.7315],[-90.0941,38.7596],[-90.0931,38.7605],[-90.0921,38.7614],[-90.0857,38.7616],[-90.0776,38.7615],[-90.0728,38.7612],[-90.0701,38.7612],[-90.0671,38.7612],[-90.0399,38.7605],[-90.0326,38.7601],[-90.0241,38.7602],[-90.0157,38.7602],[-90.0116,38.7601],[-90.0103,38.7614],[-90.0092,38.7619],[-90.0083,38.7632],[-90.0071,38.7646],[-90.003,38.7663],[-90,38.7675],[-89.9999,38.7675],[-89.997,38.7695],[-89.9953,38.7708],[-89.994,38.7733],[-89.993,38.7746],[-89.9916,38.7755],[-89.9884,38.7765],[-89.9847,38.7779],[-89.9817,38.779],[-89.98,38.7802],[-89.9792,38.7816],[-89.9799,38.7896],[-89.9795,38.7917],[-89.978,38.7963],[-89.9758,38.8013],[-89.9746,38.8021],[-89.9735,38.8026],[-89.9721,38.8031],[-89.97,38.8034],[-89.9682,38.8064],[-89.9645,38.8078],[-89.9641,38.8109],[-89.9627,38.811],[-89.9615,38.811],[-89.9598,38.811],[-89.9583,38.811],[-89.9473,38.8128],[-89.9474,38.8148],[-89.9455,38.8193],[-89.9436,38.8231],[-89.9418,38.8264],[-89.9396,38.8274],[-89.9353,38.8282],[-89.9331,38.8285],[-89.929,38.8294],[-89.9259,38.8295],[-89.9218,38.831],[-89.9201,38.8319],[-89.9185,38.8327],[-89.9173,38.8329],[-89.9148,38.8334],[-89.9134,38.8338],[-89.9112,38.8345],[-89.9053,38.8379],[-89.9025,38.8396],[-89.8989,38.8425],[-89.8922,38.8479],[-89.8864,38.8533],[-89.8855,38.854],[-89.8825,38.856],[-89.8804,38.8572],[-89.8791,38.8581],[-89.8722,38.8643],[-89.8594,38.8756],[-89.8584,38.8767],[-89.8575,38.8784],[-89.8565,38.8797],[-89.8548,38.8812],[-89.8533,38.8823],[-89.8512,38.8835],[-89.8489,38.8853],[-89.8457,38.8883],[-89.8448,38.8891],[-89.8007,38.8888],[-89.8009,38.9169],[-89.8015,38.9191],[-89.8015,38.9266],[-89.8015,38.9292],[-89.8014,38.935],[-89.8032,38.9337],[-89.8028,38.9321],[-89.803,38.9309],[-89.8047,38.9289],[-89.811,38.9226],[-89.8152,38.9184],[-89.8174,38.9161],[-89.8196,38.9131],[-89.8252,38.9075],[-89.8292,38.9034],[-89.8402,38.8931],[-89.8424,38.8912],[-89.8448,38.8891]],[[-91.963,37.9289],[-91.9575,37.9297],[-91.954,37.9312],[-91.9506,37.9347],[-91.9548,37.932],[-91.9589,37.9306],[-91.9616,37.93],[-91.963,37.9289]],[[-91.965,37.9256],[-91.965,37.9256],[-91.9634,37.928],[-91.963,37.9289]],[[-92.3129,37.7522],[-92.3128,37.7553],[-92.3146,37.7593],[-92.3132,37.7635],[-92.3126,37.7651],[-92.3044,37.7698],[-92.3011,37.7697],[-92.2923,37.7701],[-92.2835,37.77],[-92.2817,37.7742],[-92.2795,37.7762],[-92.2761,37.7779],[-92.2735,37.7793],[-92.2717,37.782],[-92.2692,37.7834],[-92.2669,37.7842],[-92.2613,37.7851],[-92.2555,37.7859],[-92.2491,37.7874],[-92.2447,37.7928],[-92.2422,37.7996],[-92.2401,37.8041],[-92.2384,37.8081],[-92.2357,37.8115],[-92.2329,37.8132],[-92.2286,37.813],[-92.2255,37.8132],[-92.2232,37.8136],[-92.2173,37.8166],[-92.2143,37.8197],[-92.2136,37.8206],[-92.2122,37.8224],[-92.2098,37.826],[-92.2075,37.8271],[-92.2058,37.8278],[-92.2029,37.8286],[-92.2008,37.8288],[-92.1996,37.8287],[-92.1986,37.8277],[-92.1971,37.827],[-92.1952,37.8269],[-92.1939,37.8264],[-92.1921,37.8271],[-92.1908,37.8278],[-92.1891,37.828],[-92.1879,37.8278],[-92.1866,37.8279],[-92.1846,37.8278],[-92.1832,37.8281],[-92.1809,37.8288],[-92.179,37.8289],[-92.1772,37.8289],[-92.1741,37.8276],[-92.1723,37.8267],[-92.1697,37.8257],[-92.1648,37.8238],[-92.1604,37.8222],[-92.1575,37.8212],[-92.1554,37.8205],[-92.1525,37.8203],[-92.1511,37.8203],[-92.1483,37.8213],[-92.1432,37.8226],[-92.1389,37.8234],[-92.1371,37.8236],[-92.1349,37.8238],[-92.1329,37.824],[-92.127,37.8244],[-92.1202,37.8253],[-92.1134,37.8256],[-92.1095,37.8274],[-92.1041,37.831],[-92.0996,37.8344],[-92.0965,37.8371],[-92.0926,37.8405],[-92.0879,37.8416],[-92.0848,37.843],[-92.0828,37.843],[-92.0801,37.8433],[-92.0762,37.8442],[-92.0728,37.8449],[-92.0713,37.8454],[-92.0683,37.8452],[-92.0664,37.8446],[-92.0642,37.8443],[-92.0629,37.8445],[-92.062,37.8455],[-92.062,37.8472],[-92.0626,37.8499],[-92.065,37.8509],[-92.0682,37.8531],[-92.0696,37.8538],[-92.0714,37.8547],[-92.0724,37.8555],[-92.0709,37.8579],[-92.07,37.8589],[-92.0688,37.8595],[-92.0674,37.8599],[-92.0654,37.8609],[-92.0637,37.8616],[-92.0612,37.8618],[-92.0533,37.8622],[-92.039,37.863],[-92.0319,37.8633],[-92.027,37.864],[-92.0259,37.8647],[-92.024,37.866],[-92.0213,37.8669],[-92.0182,37.8676],[-92.021,37.8696],[-92.0194,37.8711],[-92.0174,37.8727],[-92.017,37.8747],[-92.0171,37.877],[-92.017,37.8787],[-92.0157,37.8816],[-92.0143,37.8852],[-92.0141,37.888],[-92.0135,37.8909],[-92.011,37.8933],[-92.0105,37.8948],[-92.0104,37.8985],[-92.0093,37.8999],[-92.0034,37.9026],[-92,37.9046],[-92,37.9046],[-91.999,37.9054],[-91.9966,37.9058],[-91.9932,37.9065],[-91.9892,37.9077],[-91.9851,37.9085],[-91.9809,37.9091],[-91.978,37.9101],[-91.9728,37.9142],[-91.9706,37.918],[-91.9682,37.9207],[-91.9682,37.9207],[-91.9655,37.9206],[-91.9652,37.9223],[-91.965,37.9256],[-91.9682,37.9207]],[[-94.3953,37.1735],[-94.3899,37.1733],[-94.3877,37.1725],[-94.3857,37.1737],[-94.3831,37.1733],[-94.3715,37.1733],[-94.3694,37.1731],[-94.3681,37.1733],[-94.3659,37.1735],[-94.3638,37.1734],[-94.3517,37.1732],[-94.3501,37.1733],[-94.3486,37.1737],[-94.3465,37.1748],[-94.3443,37.176],[-94.3431,37.1765],[-94.3288,37.1766],[-94.314,37.1764],[-94.314,37.1786],[-94.304,37.1784],[-94.2973,37.1872],[-94.2957,37.1889],[-94.295,37.1896],[-94.2933,37.1906],[-94.291,37.1898],[-94.2869,37.1893],[-94.285,37.1892],[-94.2696,37.1975],[-94.2683,37.1982],[-94.2544,37.1982],[-94.2359,37.198],[-94.2282,37.1978],[-94.187,37.1968],[-94.1587,37.1962],[-94.1474,37.196],[-94.1452,37.196],[-94.1434,37.1957],[-94.1275,37.1954],[-94.1094,37.1949],[-94.1046,37.1948],[-94.0808,37.1944],[-94.0763,37.1942],[-94.0648,37.1939],[-94.0368,37.193],[-94.0284,37.1928],[-94.0231,37.1926],[-94.006,37.1924],[-94.0001,37.1923],[-94,37.1923],[-93.9491,37.1911],[-93.9472,37.1908],[-93.9022,37.1901],[-93.8881,37.19],[-93.8747,37.1896],[-93.8209,37.1891],[-93.7861,37.1886],[-93.7605,37.1883],[-93.7498,37.1879],[-93.7315,37.1877],[-93.7213,37.1875],[-93.7192,37.1871],[-93.7168,37.1866],[-93.7153,37.1861],[-93.7138,37.1858],[-93.7109,37.1862],[-93.7094,37.1862],[-93.707,37.1855],[-93.7049,37.1851],[-93.7015,37.1842],[-93.6997,37.184],[-93.6957,37.1863],[-93.6918,37.1888],[-93.6895,37.1914],[-93.6872,37.1932],[-93.685,37.1943],[-93.6781,37.1942],[-93.6726,37.1941],[-93.6689,37.194],[-93.6297,37.1936],[-93.6268,37.1936],[-93.625,37.1933],[-93.6086,37.1932],[-93.5963,37.1931],[-93.5923,37.1931],[-93.5691,37.1929],[-93.5507,37.1928],[-93.5424,37.1928],[-93.5282,37.1979],[-93.5267,37.1978],[-93.5239,37.1993],[-93.5221,37.2002],[-93.5178,37.2013],[-93.5146,37.2017],[-93.5136,37.2023],[-93.5106,37.204],[-93.5075,37.2052],[-93.505,37.2056],[-93.5011,37.206],[-93.4963,37.2066],[-93.4929,37.2072],[-93.489,37.2082],[-93.4865,37.2091],[-93.4829,37.2111],[-93.4793,37.213],[-93.4778,37.214],[-93.459,37.2135],[-93.4407,37.2133],[-93.4316,37.2133],[-93.4224,37.2132],[-93.4127,37.2129],[-93.3901,37.2127],[-93.3824,37.2125],[-93.3764,37.2126],[-93.349,37.2126],[-93.3478,37.2389],[-93.3477,37.2418],[-93.33,37.2415],[-93.3112,37.2411],[-93.2817,37.241],[-93.2733,37.2408],[-93.2713,37.2407],[-93.2684,37.2403],[-93.2646,37.2404],[-93.261,37.2402],[-93.2572,37.2401],[-93.2528,37.2399],[-93.2501,37.2398],[-93.2489,37.2396],[-93.2448,37.2395],[-93.2411,37.2395],[-93.2363,37.2395],[-93.2297,37.2392],[-93.2248,37.2389],[-93.2186,37.2387],[-93.213,37.2388],[-93.2062,37.2384],[-93.2028,37.2383],[-93.1996,37.2391],[-93.1975,37.2412],[-93.1956,37.2434],[-93.1935,37.2455],[-93.1911,37.2467],[-93.1867,37.2476],[-93.1838,37.2476],[-93.1793,37.2472],[-93.1752,37.2485],[-93.1703,37.2501],[-93.1558,37.2561],[-93.144,37.2623],[-93.1408,37.2635],[-93.1353,37.265],[-93.1282,37.2671],[-93.1226,37.2677],[-93.1157,37.2688],[-93.1076,37.2692],[-93.1018,37.2702],[-93.0925,37.2705],[-93.0785,37.2706],[-93.0696,37.2701],[-93.0571,37.2728],[-93.0485,37.2742],[-93.0449,37.2763],[-93.0437,37.2793],[-93.0417,37.2835],[-93.0275,37.2913],[-93.0161,37.2977],[-93.0106,37.3005],[-93.0052,37.3022],[-93.0036,37.3025],[-93,37.3019],[-92.9998,37.3019],[-92.9927,37.3027],[-92.9832,37.3039],[-92.9774,37.3066],[-92.9756,37.307],[-92.9712,37.3103],[-92.97,37.311],[-92.9609,37.3197],[-92.9525,37.3237],[-92.9504,37.3249],[-92.9385,37.3316],[-92.9229,37.3361],[-92.9205,37.337],[-92.918,37.3383],[-92.9167,37.3394],[-92.9143,37.3437],[-92.9123,37.3451],[-92.911,37.3471],[-92.9076,37.3474],[-92.903,37.3471],[-92.9007,37.3484],[-92.8964,37.3522],[-92.8944,37.353],[-92.8908,37.3548],[-92.887,37.3576],[-92.8831,37.361],[-92.8816,37.3641],[-92.8803,37.3648],[-92.8781,37.3654],[-92.8714,37.3672],[-92.8682,37.3682],[-92.8666,37.3694],[-92.8642,37.3719],[-92.8638,37.3734],[-92.8622,37.3748],[-92.8609,37.3759],[-92.8591,37.3773],[-92.8558,37.3789],[-92.8543,37.3797],[-92.8541,37.3806],[-92.8537,37.3827],[-92.8546,37.3837],[-92.8543,37.3861],[-92.8536,37.3871],[-92.8506,37.3884],[-92.848,37.3894],[-92.8463,37.3911],[-92.8449,37.3931],[-92.8448,37.3967],[-92.8448,37.3994],[-92.8446,37.4133],[-92.8438,37.4443],[-92.8453,37.4474],[-92.8455,37.4494],[-92.8436,37.4528],[-92.8382,37.4577],[-92.8344,37.4627],[-92.8337,37.4668],[-92.8341,37.4751],[-92.8339,37.4823],[-92.8332,37.4872],[-92.831,37.4924],[-92.8283,37.4977],[-92.8269,37.5],[-92.8269,37.5],[-92.8262,37.5014],[-92.8262,37.5042],[-92.8255,37.5065],[-92.8244,37.5098],[-92.8239,37.5109],[-92.8239,37.5319],[-92.8192,37.537],[-92.8132,37.5419],[-92.81,37.5439],[-92.8045,37.5478],[-92.7983,37.5536],[-92.7938,37.5566],[-92.7899,37.5587],[-92.7889,37.5577],[-92.7882,37.5559],[-92.787,37.5549],[-92.7844,37.5539],[-92.7833,37.5565],[-92.7828,37.5591],[-92.7828,37.5611],[-92.783,37.5628],[-92.7828,37.5643],[-92.7786,37.5656],[-92.772,37.5698],[-92.7669,37.573],[-92.756,37.5793],[-92.7443,37.5857],[-92.7415,37.5879],[-92.7405,37.5888],[-92.7369,37.5898],[-92.7289,37.5926],[-92.7151,37.5994],[-92.7111,37.6025],[-92.7046,37.6083],[-92.6982,37.614],[-92.6958,37.6164],[-92.6926,37.6223],[-92.6882,37.6292],[-92.6854,37.6329],[-92.6783,37.6387],[-92.6747,37.6414],[-92.6703,37.6465],[-92.6694,37.649],[-92.6684,37.6505],[-92.6676,37.6518],[-92.6671,37.6681],[-92.649,37.6841],[-92.6429,37.6842],[-92.6314,37.6927],[-92.6145,37.7128],[-92.6045,37.7259],[-92.603,37.7289],[-92.5964,37.7352],[-92.5935,37.7377],[-92.5905,37.7383],[-92.5871,37.7402],[-92.5835,37.7424],[-92.5799,37.7456],[-92.578,37.7474],[-92.5748,37.7479],[-92.5715,37.7501],[-92.5692,37.7508],[-92.5667,37.7507],[-92.5635,37.7515],[-92.5584,37.753],[-92.5562,37.753],[-92.5535,37.7528],[-92.5503,37.7526],[-92.5458,37.7524],[-92.5427,37.7523],[-92.5381,37.7537],[-92.5357,37.7545],[-92.5346,37.7548],[-92.5329,37.7556],[-92.5319,37.756],[-92.5286,37.7567],[-92.5259,37.7572],[-92.5236,37.7574],[-92.5223,37.758],[-92.5212,37.7585],[-92.5198,37.7587],[-92.5182,37.7584],[-92.5171,37.7573],[-92.5163,37.7564],[-92.5149,37.7555],[-92.5127,37.7551],[-92.5106,37.7547],[-92.5069,37.7542],[-92.5051,37.7538],[-92.5014,37.7525],[-92.4999,37.7522],[-92.4975,37.7524],[-92.493,37.7524],[-92.49,37.7525],[-92.4878,37.7536],[-92.4814,37.7559],[-92.4723,37.7581],[-92.4688,37.7577],[-92.4627,37.7579],[-92.457,37.7576],[-92.4542,37.7576],[-92.4515,37.759],[-92.4481,37.7619],[-92.4456,37.7629],[-92.4428,37.7642],[-92.4391,37.7665],[-92.4361,37.7677],[-92.4318,37.7677],[-92.4265,37.7675],[-92.421,37.7666],[-92.4105,37.7674],[-92.404,37.7674],[-92.4016,37.767],[-92.4,37.766],[-92.3978,37.7645],[-92.3963,37.7639],[-92.3944,37.7639],[-92.3928,37.764],[-92.3906,37.7653],[-92.3888,37.7662],[-92.3876,37.7664],[-92.3852,37.7662],[-92.383,37.7655],[-92.3812,37.764],[-92.3798,37.7622],[-92.3775,37.7612],[-92.3751,37.7588],[-92.374,37.7565],[-92.3738,37.7551],[-92.3734,37.7538],[-92.371,37.7522],[-92.3657,37.7511],[-92.3634,37.7505],[-92.3612,37.7494],[-92.3587,37.7467],[-92.3553,37.7446],[-92.3517,37.7433],[-92.3489,37.7427],[-92.3457,37.7435],[-92.3421,37.7445],[-92.339,37.7443],[-92.337,37.7438],[-92.3312,37.7448],[-92.3259,37.7466],[-92.3206,37.7491],[-92.3168,37.7511],[-92.3129,37.7522],[-92.311,37.7518],[-92.3069,37.7511],[-92.304,37.7508],[-92.2996,37.7513],[-92.2975,37.7531],[-92.2955,37.7553],[-92.2942,37.756],[-92.291,37.7594],[-92.2865,37.7655],[-92.2835,37.77]],[[-94.3877,37.1725],[-94.392,37.1701],[-94.3953,37.1735],[-94.3965,37.1733],[-94.4005,37.1728],[-94.4023,37.1725],[-94.4036,37.1728],[-94.4058,37.1729],[-94.4086,37.1732],[-94.4101,37.1728],[-94.4111,37.1719],[-94.4131,37.1701],[-94.4157,37.1678],[-94.417,37.167],[-94.4194,37.1665],[-94.4225,37.1665],[-94.4372,37.1666],[-94.4379,37.1492],[-94.4406,37.1492],[-94.4435,37.1493],[-94.447,37.1494],[-94.4497,37.1492],[-94.4511,37.1479],[-94.455,37.1475],[-94.4583,37.1471],[-94.4595,37.1465],[-94.4641,37.1462],[-94.4745,37.1465],[-94.4749,37.1412],[-94.476,37.1128],[-94.4846,37.113],[-94.4846,37.1089],[-94.4883,37.1089],[-94.4947,37.1015],[-94.4949,37.0988],[-94.495,37.084]],[[-94.476,37.1128],[-94.4772,37.0843],[-94.4827,37.0839],[-94.4862,37.0838],[-94.4933,37.0839],[-94.495,37.084],[-94.5136,37.084],[-94.5312,37.0846],[-94.5418,37.0849],[-94.5459,37.0846],[-94.5489,37.0847],[-94.5508,37.0847],[-94.5602,37.0851],[-94.5669,37.0852],[-94.574,37.0853],[-94.5833,37.0857],[-94.603,37.0859],[-94.6053,37.086],[-94.6067,37.0857],[-94.6079,37.0851],[-94.6098,37.0858],[-94.6112,37.0859],[-94.6137,37.0858],[-94.616,37.0858],[-94.6187,37.0861],[-94.6206,37.0865],[-94.6223,37.0871],[-94.6239,37.0875],[-94.625,37.087],[-94.6271,37.0858],[-94.6295,37.0844],[-94.6312,37.0836],[-94.6332,37.083],[-94.6352,37.0827],[-94.6366,37.0817],[-94.638,37.0806],[-94.6392,37.0808],[-94.6394,37.075],[-94.6554,37.0749],[-94.7014,37.0749],[-94.7045,37.0749],[-94.7099,37.0749],[-94.7126,37.0749],[-94.7149,37.075],[-94.7178,37.0748],[-94.7222,37.075],[-94.7329,37.0753],[-94.7368,37.0754],[-94.7386,37.0755],[-94.7403,37.074],[-94.7413,37.073],[-94.7411,37.0708],[-94.7411,37.0654],[-94.74,37.0339],[-94.7381,37.0332],[-94.7367,37.0332],[-94.7347,37.0329],[-94.7349,37.031],[-94.7354,37.0237],[-94.736,37.0164],[-94.7361,37.0149],[-94.7365,37.0086],[-94.7373,37.0077],[-94.7383,37.0071],[-94.7392,37.0063],[-94.74,37.0056],[-94.7406,37.0045],[-94.7407,37.0035],[-94.7408,37.0002],[-94.7408,37],[-94.7408,36.9963],[-94.7407,36.9929],[-94.7412,36.991],[-94.7433,36.988],[-94.7478,36.9831],[-94.7552,36.9745],[-94.7578,36.9722],[-94.7602,36.971],[-94.7765,36.9642],[-94.7845,36.9611],[-94.7864,36.9601],[-94.7876,36.9584],[-94.7879,36.9572],[-94.7879,36.9532],[-94.7879,36.9493],[-94.789,36.9474],[-94.792,36.9444],[-94.7944,36.9436],[-94.7986,36.9437],[-94.8307,36.9437],[-94.8652,36.9434],[-94.8669,36.9424],[-94.8674,36.9411],[-94.8675,36.9306],[-94.8675,36.9291],[-94.8693,36.9266],[-94.8714,36.9253],[-94.8755,36.9225],[-94.8764,36.9216],[-94.8773,36.9201],[-94.8775,36.9181],[-94.8775,36.9064],[-94.8774,36.8709],[-94.8827,36.871],[-94.9006,36.8651],[-94.902,36.8641],[-94.9033,36.8622],[-94.9038,36.8605],[-94.9038,36.8565],[-94.9042,36.8511],[-94.9047,36.8493],[-94.9083,36.8447],[-94.9121,36.8399],[-94.9252,36.8245],[-94.9272,36.8196],[-94.9272,36.8155]],[[-94.8774,36.8709],[-94.8777,36.8654],[-94.8785,36.8645],[-94.8799,36.8643],[-94.8824,36.8629],[-94.8824,36.8481],[-94.8824,36.8301],[-94.9091,36.83],[-94.9091,36.8154],[-94.9272,36.8155],[-94.9272,36.7941],[-94.9273,36.7335],[-94.9273,36.7285],[-94.9454,36.7286],[-94.9455,36.7001],[-94.9416,36.701],[-94.938,36.702],[-94.9341,36.7031],[-94.9318,36.7045],[-94.93,36.7063],[-94.9281,36.7126],[-94.9276,36.7153],[-94.9274,36.7169],[-94.9274,36.7185],[-94.9273,36.7203],[-94.9273,36.7233],[-94.9274,36.7266],[-94.9273,36.7285]],[[-94.9455,36.7001],[-94.951,36.6988],[-94.9547,36.698],[-94.9794,36.6864],[-94.9805,36.6858],[-94.9812,36.685],[-94.9816,36.6838],[-94.9817,36.6409],[-94.9816,36.6304],[-94.9816,36.629],[-94.9825,36.6278],[-94.9837,36.6272],[-94.9856,36.6271],[-95,36.627],[-95.0632,36.627],[-95.1048,36.627],[-95.1159,36.627],[-95.1309,36.6269],[-95.1324,36.6271],[-95.1346,36.6281],[-95.136,36.6295],[-95.1368,36.6308],[-95.1374,36.6317],[-95.1383,36.6326],[-95.14,36.6334],[-95.1544,36.6388],[-95.157,36.6346],[-95.1585,36.6318],[-95.16,36.6292],[-95.162,36.6277],[-95.1645,36.6268],[-95.1682,36.6269],[-95.1734,36.627],[-95.1777,36.6269],[-95.1841,36.627],[-95.2141,36.6269],[-95.217,36.6268],[-95.2327,36.6267],[-95.2476,36.6268],[-95.2517,36.6268],[-95.2529,36.6267],[-95.2545,36.6261],[-95.2574,36.6248],[-95.2666,36.6204],[-95.2708,36.6184],[-95.2734,36.6171],[-95.277,36.6155],[-95.2789,36.6145],[-95.2798,36.614],[-95.2817,36.6121],[-95.2841,36.609],[-95.2874,36.6047],[-95.2914,36.5995],[-95.2951,36.5946],[-95.2972,36.5925],[-95.2992,36.5908],[-95.3006,36.5893],[-95.3077,36.5823],[-95.3102,36.5799],[-95.3134,36.577],[-95.3145,36.5764],[-95.3169,36.575],[-95.3262,36.5694],[-95.3345,36.5653],[-95.3382,36.5634],[-95.3532,36.5538],[-95.3547,36.553],[-95.3584,36.5508],[-95.361,36.5499],[-95.3647,36.5488],[-95.3702,36.5472],[-95.3759,36.5457],[-95.395,36.5405],[-95.3987,36.5395],[-95.4013,36.5392],[-95.4038,36.5392],[-95.4222,36.5395],[-95.424,36.5392],[-95.4258,36.5384],[-95.4275,36.5369],[-95.4297,36.5343],[-95.4346,36.5284],[-95.4421,36.5194],[-95.4472,36.5134],[-95.4567,36.5004],[-95.4569,36.5],[-95.4642,36.4902],[-95.4658,36.4882],[-95.4674,36.4862],[-95.4692,36.4843],[-95.4728,36.4809],[-95.4754,36.4785],[-95.48,36.4743],[-95.484,36.4706],[-95.4863,36.4686],[-95.4964,36.4593],[-95.4999,36.4562],[-95.5032,36.4528],[-95.5067,36.4493],[-95.517,36.4388],[-95.5174,36.4379],[-95.5199,36.4345],[-95.5199,36.4328],[-95.5203,36.4302],[-95.5223,36.4291],[-95.5252,36.4277],[-95.529,36.4263],[-95.5307,36.4251],[-95.5326,36.4225],[-95.534,36.4201],[-95.5378,36.4129],[-95.5402,36.4086],[-95.5484,36.3957],[-95.5509,36.3916],[-95.5584,36.3798],[-95.565,36.3702],[-95.5674,36.3687],[-95.5695,36.3675],[-95.5722,36.3658],[-95.5745,36.3645],[-95.5773,36.3618],[-95.5784,36.3606],[-95.6003,36.338],[-95.6042,36.3336],[-95.6058,36.3314],[-95.6061,36.3296],[-95.6076,36.3286],[-95.6205,36.3082],[-95.6223,36.3057],[-95.6246,36.3027],[-95.6286,36.2969],[-95.637,36.2836],[-95.6417,36.2763],[-95.6435,36.2732],[-95.6454,36.271],[-95.6495,36.2673],[-95.6729,36.2455],[-95.6765,36.2422],[-95.6827,36.2388],[-95.709,36.223],[-95.7155,36.2188],[-95.7201,36.216],[-95.7226,36.2136],[-95.7264,36.2056],[-95.7265,36.2031],[-95.7264,36.1971],[-95.7265,36.1958],[-95.7273,36.1952],[-95.7287,36.1943],[-95.7344,36.1913],[-95.7374,36.1894],[-95.7413,36.1872],[-95.7435,36.1856],[-95.7492,36.1807],[-95.7524,36.1766],[-95.7603,36.1672],[-95.7616,36.167],[-95.7618,36.1481],[-95.8265,36.1481],[-95.848,36.1481],[-95.9047,36.148],[-95.9769,36.1479],[-95.9823,36.1478],[-95.9883,36.1465],[-95.9918,36.1459],[-96,36.1459],[-96.0012,36.146],[-96.0028,36.1446],[-96.0042,36.1433],[-96.0055,36.1419],[-96.0063,36.1411],[-96.0068,36.1394],[-96.0068,36.1377],[-96.0069,36.131],[-96.0071,36.1188],[-96.0072,36.1177],[-96.0086,36.1149],[-96.0107,36.1117],[-96.0133,36.11],[-96.0176,36.1068],[-96.0199,36.1051],[-96.0218,36.1045],[-96.0235,36.1045],[-96.0264,36.1024],[-96.0289,36.1004],[-96.0304,36.0993],[-96.0318,36.0978],[-96.0345,36.0949],[-96.0359,36.0937],[-96.0391,36.0903],[-96.0424,36.088],[-96.0492,36.0828],[-96.0514,36.0811],[-96.0528,36.0801],[-96.0543,36.0794],[-96.0557,36.0789],[-96.0569,36.0787],[-96.0583,36.0786],[-96.0628,36.0783],[-96.0687,36.078],[-96.0714,36.0776],[-96.0744,36.0768],[-96.0801,36.0753],[-96.083,36.0744],[-96.0848,36.0738],[-96.086,36.073],[-96.0869,36.072],[-96.0874,36.0708],[-96.0878,36.0691],[-96.0879,36.0664],[-96.0878,36.0648],[-96.0878,36.0611],[-96.0882,36.0591],[-96.0891,36.0549],[-96.0898,36.0534],[-96.0912,36.052],[-96.0934,36.0504],[-96.0948,36.0493],[-96.0962,36.0479],[-96.097,36.0464],[-96.0985,36.0429],[-96.1013,36.0369],[-96.1012,36.032],[-96.1011,36.0231],[-96.1011,36.0211],[-96.101,36.02],[-96.1006,36.0186],[-96.1001,36.0163],[-96.0999,36.015],[-96.0987,36.0123],[-96.0988,36.0113],[-96.0989,36.0103],[-96.0988,36.0002],[-96.0991,36],[-96.1005,35.9991],[-96.1198,35.9984],[-96.1223,35.9983],[-96.1238,35.9978],[-96.1277,35.9959],[-96.1326,35.9938],[-96.135,35.9931],[-96.1387,35.993],[-96.1581,35.9917],[-96.1687,35.9908],[-96.1838,35.9897],[-96.1873,35.9886],[-96.1901,35.987],[-96.192,35.9838],[-96.1934,35.9781],[-96.1946,35.9714],[-96.1961,35.9665],[-96.1991,35.9633],[-96.2051,35.9576],[-96.2109,35.9521],[-96.215,35.9496],[-96.221,35.9441],[-96.2227,35.9411],[-96.2262,35.9377],[-96.2325,35.9319],[-96.2402,35.9259],[-96.2425,35.9244],[-96.2455,35.9239],[-96.248,35.9239],[-96.2508,35.9242],[-96.2538,35.9246],[-96.2577,35.9247],[-96.2647,35.925],[-96.269,35.9248],[-96.2932,35.9152],[-96.2965,35.9139],[-96.3028,35.9113],[-96.3089,35.909],[-96.3245,35.9026],[-96.3301,35.9012],[-96.3329,35.901],[-96.3384,35.901],[-96.3643,35.9011],[-96.3853,35.9011],[-96.3874,35.9008],[-96.3875,35.8998],[-96.3872,35.898],[-96.3874,35.8952],[-96.3873,35.887],[-96.3873,35.8851],[-96.3868,35.8842],[-96.3851,35.8826],[-96.3877,35.8798],[-96.3886,35.8786],[-96.3896,35.8764],[-96.39,35.8747],[-96.3898,35.8726],[-96.3886,35.8626],[-96.3872,35.8523],[-96.3872,35.8496],[-96.3872,35.8479],[-96.3874,35.8463],[-96.3891,35.8435],[-96.3905,35.8412],[-96.3909,35.8395],[-96.3909,35.8367],[-96.3909,35.8311],[-96.4,35.8308],[-96.4002,35.8263],[-96.4031,35.8238],[-96.4055,35.8215],[-96.4063,35.8209],[-96.4079,35.8206],[-96.4153,35.8199],[-96.4202,35.8206],[-96.4329,35.8189],[-96.4366,35.8183],[-96.4403,35.8175],[-96.4421,35.8173],[-96.445,35.8174],[-96.4486,35.8174],[-96.4524,35.8155],[-96.4535,35.815],[-96.458,35.815],[-96.463,35.815],[-96.4655,35.815],[-96.4681,35.8136],[-96.4813,35.8136],[-96.4856,35.8136],[-96.487,35.8131],[-96.4884,35.812],[-96.4907,35.81],[-96.4926,35.8087],[-96.4957,35.8063],[-96.5036,35.8062],[-96.5037,35.8028],[-96.5098,35.8028],[-96.5098,35.8061],[-96.5124,35.8061],[-96.527,35.8061],[-96.5399,35.8011],[-96.5566,35.7946],[-96.5576,35.7938]],[[-96.6319,35.7576],[-96.631,35.7586],[-96.6301,35.7594],[-96.6292,35.7603],[-96.6255,35.7639],[-96.6225,35.7666],[-96.6205,35.7683],[-96.6189,35.7691],[-96.6162,35.7698],[-96.6134,35.7698],[-96.6014,35.7697],[-96.6002,35.7697],[-96.5984,35.7689],[-96.5972,35.7686],[-96.5955,35.7696],[-96.5937,35.7702],[-96.5904,35.7697],[-96.5813,35.7698],[-96.5784,35.7725],[-96.5761,35.7746],[-96.5753,35.7757],[-96.5748,35.779],[-96.571,35.7821],[-96.5699,35.783],[-96.5691,35.7837],[-96.5665,35.7836],[-96.5651,35.7844],[-96.5617,35.7862],[-96.5612,35.7871],[-96.5608,35.7882],[-96.5596,35.7894],[-96.5582,35.7908],[-96.5575,35.7918],[-96.5576,35.7938],[-96.5691,35.7837]],[[-96.6378,35.7525],[-96.6349,35.7547],[-96.6333,35.7562],[-96.6319,35.7576],[-96.6344,35.7571],[-96.6353,35.7566],[-96.6372,35.7542],[-96.6378,35.7525]],[[-98.2714,35.551],[-98.2638,35.5516],[-98.2651,35.5562],[-98.2649,35.5607],[-98.2663,35.5642],[-98.2679,35.5665],[-98.2804,35.582],[-98.2861,35.591],[-98.2939,35.5726],[-98.2939,35.5705],[-98.2947,35.5691],[-98.2966,35.5668],[-98.3014,35.561],[-98.3027,35.5585],[-98.3054,35.553],[-98.3062,35.5514]],[[-98.3176,35.624],[-98.3005,35.6239],[-98.2914,35.6238],[-98.2779,35.624],[-98.2601,35.624],[-98.2489,35.6239],[-98.2065,35.6239],[-98.2013,35.6228],[-98.1784,35.6175],[-98.1644,35.6141],[-98.1243,35.6044],[-98.1221,35.6039],[-98.1195,35.6033],[-98.1186,35.6026],[-98.1186,35.5826],[-98.1187,35.5786],[-98.1185,35.5775],[-98.1177,35.5767],[-98.1163,35.5757],[-98.1148,35.5747],[-98.114,35.5735],[-98.1141,35.5598],[-98.1142,35.5368]],[[-98.3079,35.5509],[-98.3192,35.5428],[-98.3252,35.5386],[-98.3291,35.5362],[-98.3312,35.536],[-98.3361,35.5361],[-98.3717,35.5367],[-98.4157,35.5365],[-98.4694,35.5367],[-98.4798,35.5366],[-98.5005,35.5367],[-98.5024,35.5363],[-98.5081,35.5352],[-98.5107,35.5352],[-98.5145,35.5352],[-98.517,35.5353],[-98.5189,35.5359],[-98.5218,35.5366],[-98.5241,35.5367],[-98.5305,35.5367],[-98.5523,35.5369],[-98.5597,35.5364],[-98.6123,35.5362],[-98.6388,35.5363],[-98.6464,35.5363],[-98.6504,35.5365],[-98.6592,35.5369],[-98.662,35.537],[-98.6752,35.5369],[-98.6941,35.537],[-98.6941,35.5261],[-98.6909,35.5262],[-98.6862,35.5305],[-98.6818,35.533],[-98.6775,35.5357],[-98.6752,35.5369]],[[-96.6378,35.7525],[-96.6382,35.7514],[-96.6393,35.7505],[-96.6417,35.7502],[-96.6437,35.7496],[-96.6452,35.7491],[-96.6473,35.7492],[-96.6646,35.7493],[-96.6679,35.75],[-96.6704,35.7506],[-96.6727,35.7512],[-96.6748,35.7511],[-96.6803,35.7508],[-96.6816,35.7507],[-96.683,35.7502],[-96.693,35.7463],[-96.7006,35.7436],[-96.7041,35.7422],[-96.7169,35.7379],[-96.7186,35.7375],[-96.7196,35.737],[-96.7249,35.7314],[-96.7305,35.7252],[-96.7319,35.7244],[-96.7336,35.7241],[-96.7531,35.724],[-96.7546,35.724],[-96.7565,35.7232],[-96.7589,35.7219],[-96.7627,35.7195],[-96.7642,35.7184],[-96.7648,35.7175],[-96.765,35.7166],[-96.7651,35.7156],[-96.7651,35.7126],[-96.7653,35.7114],[-96.7662,35.7102],[-96.768,35.7099],[-96.7814,35.7098],[-96.8526,35.7098],[-96.8759,35.7099],[-96.877,35.7089],[-96.8794,35.7071],[-96.8809,35.7061],[-96.8807,35.6954],[-96.9201,35.6956],[-96.9548,35.6955],[-96.9581,35.695],[-96.9851,35.6913],[-96.9937,35.6903],[-96.9956,35.69],[-96.9967,35.6894],[-96.9983,35.6879],[-97,35.6864],[-97,35.6864],[-97.001,35.6851],[-97.0014,35.6836],[-97.0024,35.6822],[-97.0036,35.6814],[-97.0048,35.6811],[-97.007,35.6811],[-97.0452,35.6808],[-97.0507,35.681],[-97.0534,35.6811],[-97.055,35.6819],[-97.0579,35.6838],[-97.061,35.6861],[-97.0623,35.6873],[-97.0626,35.6885],[-97.0625,35.6911],[-97.0626,35.6938],[-97.0632,35.6948],[-97.0673,35.6945],[-97.0701,35.6939],[-97.074,35.692],[-97.0768,35.6904],[-97.0897,35.6812],[-97.0953,35.6787],[-97.1102,35.6743],[-97.1125,35.6738],[-97.1157,35.6737],[-97.1212,35.6737],[-97.1239,35.6737],[-97.1252,35.6735],[-97.1268,35.6724],[-97.1275,35.6713],[-97.1283,35.6701],[-97.1294,35.6689],[-97.1316,35.6676],[-97.1336,35.6668],[-97.1366,35.6665],[-97.1855,35.6668],[-97.1994,35.6666],[-97.2014,35.6679],[-97.2027,35.6685],[-97.204,35.6691],[-97.2055,35.6693],[-97.2066,35.669],[-97.2082,35.6682],[-97.2099,35.6672],[-97.2108,35.6667],[-97.2173,35.6668],[-97.2438,35.6671],[-97.2457,35.6669],[-97.2467,35.6661],[-97.2475,35.6652],[-97.2484,35.6642],[-97.2491,35.6632],[-97.2507,35.6627],[-97.2752,35.6599],[-97.2891,35.6597],[-97.2917,35.6603],[-97.2944,35.6626],[-97.296,35.6649],[-97.2982,35.6664],[-97.3005,35.6671],[-97.3038,35.6671],[-97.3162,35.6672],[-97.3187,35.6655],[-97.3227,35.6633],[-97.3266,35.6619],[-97.3313,35.6607],[-97.3328,35.6596],[-97.3509,35.6534],[-97.3532,35.6526],[-97.3756,35.6528],[-97.43,35.6527],[-97.4788,35.653],[-97.4815,35.6534],[-97.4822,35.6481],[-97.4836,35.6383],[-97.4847,35.6287],[-97.4854,35.6256],[-97.4866,35.624],[-97.4893,35.6206],[-97.4928,35.6157],[-97.4944,35.6135],[-97.4956,35.6116],[-97.4951,35.6094],[-97.4963,35.6092],[-97.4963,35.5992],[-97.4964,35.5807],[-97.4964,35.559],[-97.4964,35.5543],[-97.4946,35.5517],[-97.4946,35.5494],[-97.4954,35.5368],[-97.4958,35.5353],[-97.4978,35.5331],[-97.5001,35.5312],[-97.5044,35.5297],[-97.5039,35.5272],[-97.5036,35.5261],[-97.5033,35.5244],[-97.5035,35.5223],[-97.5036,35.5],[-97.5036,35.5],[-97.5036,35.4976]],[[-97.5321,35.4938],[-97.5334,35.495],[-97.5344,35.4966],[-97.5347,35.5],[-97.5348,35.5004],[-97.5348,35.5116],[-97.5537,35.5115],[-97.5659,35.5114]],[[-98.2861,35.591],[-98.3027,35.6055],[-98.3066,35.611],[-98.308,35.6129],[-98.3112,35.6144],[-98.3145,35.6158],[-98.316,35.617],[-98.3172,35.6187],[-98.3177,35.6209],[-98.3176,35.624],[-98.3222,35.6233],[-98.3223,35.6207],[-98.3217,35.6181],[-98.3214,35.6163],[-98.322,35.6146],[-98.3233,35.6135],[-98.3243,35.612],[-98.3258,35.609],[-98.3271,35.6061],[-98.3281,35.6045],[-98.3291,35.6019],[-98.3297,35.6003],[-98.3312,35.5982],[-98.3312,35.5876],[-98.331,35.5867],[-98.3315,35.5844],[-98.3313,35.5818],[-98.3304,35.5736],[-98.3301,35.569],[-98.3302,35.567],[-98.3309,35.5647],[-98.3278,35.5603],[-98.3242,35.5577],[-98.3192,35.5548],[-98.316,35.5534],[-98.3134,35.5535],[-98.3135,35.5512],[-98.3079,35.5509],[-98.3062,35.5514],[-98.3033,35.5512],[-98.3019,35.5509],[-98.3003,35.5504],[-98.2987,35.5498],[-98.2975,35.5495],[-98.2962,35.5494],[-98.2895,35.5497],[-98.2815,35.55],[-98.2785,35.5503],[-98.275,35.5509],[-98.2726,35.5509],[-98.2714,35.551],[-98.2643,35.5482],[-98.2558,35.545],[-98.2395,35.537],[-98.2376,35.5364],[-98.2023,35.5366],[-98.1521,35.5368],[-98.1142,35.5368],[-98.0384,35.537],[-98.0338,35.5369],[-98.0285,35.5372],[-98.0089,35.5373],[-98.0001,35.5372],[-98,35.5372],[-97.9867,35.537],[-97.9809,35.537],[-97.9797,35.5364],[-97.9779,35.5352],[-97.9758,35.5337],[-97.9741,35.5326],[-97.9719,35.5323],[-97.9656,35.5322],[-97.9549,35.5323],[-97.9527,35.5314],[-97.9527,35.5226],[-97.95,35.5173],[-97.9478,35.513],[-97.9455,35.5099],[-97.944,35.509],[-97.942,35.5082],[-97.9402,35.5082],[-97.9324,35.508],[-97.9271,35.508],[-97.8548,35.508],[-97.849,35.5079],[-97.8041,35.5079],[-97.7697,35.5079],[-97.7432,35.5081],[-97.7356,35.5078],[-97.7298,35.5079],[-97.7251,35.508],[-97.707,35.508],[-97.6997,35.5081],[-97.6967,35.508],[-97.6954,35.5084],[-97.6944,35.5095],[-97.6934,35.5112],[-97.6921,35.5122],[-97.6897,35.5124],[-97.682,35.5123],[-97.6774,35.5123],[-97.6757,35.5123],[-97.6742,35.5128],[-97.6727,35.5142],[-97.6716,35.5145],[-97.6674,35.5147],[-97.663,35.5149],[-97.6537,35.5149],[-97.6469,35.5152],[-97.6444,35.5147],[-97.6364,35.5131],[-97.6324,35.5122],[-97.6301,35.5116],[-97.6275,35.5112],[-97.6241,35.5113],[-97.6082,35.5115],[-97.5835,35.5115],[-97.5768,35.5114],[-97.5694,35.5114],[-97.5659,35.5114],[-97.5659,35.5],[-97.5659,35.5],[-97.5659,35.4932],[-97.5566,35.4933],[-97.5488,35.4933],[-97.5321,35.4938],[-97.507,35.4933],[-97.507,35.4933]],[[-97.5015,35.4925],[-97.5002,35.4925],[-97.5003,35.4935],[-97.5017,35.4934],[-97.5017,35.4947],[-97.5019,35.4961],[-97.5036,35.4976],[-97.5044,35.4967],[-97.5054,35.4958],[-97.5059,35.4944],[-97.507,35.4933],[-97.5017,35.4934],[-97.5015,35.4925]],[[-112.4856,35.2249],[-112.4784,35.2232]],[[-101.7234,35.2221],[-101.7505,35.2221],[-101.7404,35.2243],[-101.7269,35.2273],[-101.7245,35.228],[-101.7245,35.2233],[-101.7234,35.2221],[-101.7229,35.2286],[-101.7245,35.228]],[[-112.4535,35.2199],[-112.4548,35.22],[-112.4602,35.2205],[-112.4619,35.2206],[-112.4656,35.2214],[-112.4688,35.222],[-112.4707,35.2223],[-112.4723,35.2225],[-112.4743,35.2224],[-112.477,35.2227],[-112.4784,35.2232],[-112.4813,35.2228],[-112.4856,35.2249],[-112.4868,35.2247],[-112.4884,35.2247],[-112.4913,35.2244],[-112.4925,35.224],[-112.496,35.2221],[-112.4967,35.2209]],[[-112.4743,35.2224],[-112.4743,35.2206],[-112.474,35.2188],[-112.4713,35.2183],[-112.4664,35.2182],[-112.4619,35.2179],[-112.4595,35.2181],[-112.458,35.2184],[-112.4544,35.2187],[-112.4535,35.2199],[-112.4473,35.2193],[-112.4453,35.219],[-112.4425,35.2182],[-112.4386,35.2169],[-112.4353,35.2162],[-112.4306,35.2146],[-112.4267,35.2145],[-112.4245,35.2143],[-112.4241,35.2153],[-112.4228,35.2154],[-112.4224,35.2163],[-112.4178,35.218],[-112.4122,35.2205],[-112.4081,35.2223],[-112.3686,35.2227],[-112.3717,35.2216],[-112.3748,35.2206],[-112.3757,35.2192],[-112.3767,35.2185],[-112.3773,35.2177],[-112.3762,35.2167],[-112.3727,35.217],[-112.3703,35.217],[-112.3664,35.2162],[-112.3631,35.2154],[-112.3597,35.2147],[-112.3559,35.2151],[-112.3526,35.2158],[-112.3507,35.2165],[-112.3469,35.2178],[-112.3445,35.2181]],[[-112.4245,35.2143],[-112.4211,35.2141],[-112.4142,35.2135],[-112.4093,35.2132],[-112.4069,35.2136],[-112.4039,35.2147],[-112.4006,35.216],[-112.3974,35.2167],[-112.3939,35.2167],[-112.3911,35.2163],[-112.389,35.2158],[-112.3864,35.2158],[-112.383,35.2158],[-112.3789,35.2163],[-112.3762,35.2167]],[[-100.7345,35.2126],[-100.7343,35.2151],[-100.742,35.2151]],[[-111.7314,35.1927],[-111.7299,35.1917],[-111.7286,35.1911],[-111.7274,35.1902],[-111.7261,35.1892],[-111.7248,35.1895],[-111.7239,35.1906],[-111.7225,35.192],[-111.7207,35.1929],[-111.7247,35.1929],[-111.7314,35.1927],[-111.734,35.1934],[-111.737,35.1946],[-111.7403,35.1966],[-111.7432,35.1979],[-111.7453,35.1988],[-111.7484,35.1991],[-111.7539,35.1998],[-111.7598,35.2016],[-111.7653,35.2034],[-111.7675,35.2047],[-111.7703,35.2072],[-111.772,35.2097],[-111.7737,35.2119],[-111.7758,35.2133],[-111.7795,35.2145],[-111.7844,35.2162],[-111.7883,35.2185],[-111.7925,35.2218],[-111.7974,35.2249],[-111.8018,35.227],[-111.8039,35.2278],[-111.8117,35.2314],[-111.8204,35.2356],[-111.823,35.2367],[-111.8219,35.238],[-111.8248,35.238],[-111.8269,35.2387],[-111.8307,35.2407],[-111.8356,35.2429],[-111.8397,35.2448],[-111.8445,35.2469],[-111.8486,35.2479],[-111.8562,35.2494],[-111.873,35.262],[-111.8759,35.2639],[-111.8841,35.2685],[-111.8906,35.2715],[-111.8938,35.2729],[-111.8963,35.2739],[-111.8985,35.275],[-111.9002,35.2755],[-111.9021,35.2751],[-111.9045,35.2747],[-111.9059,35.2739],[-111.9076,35.272],[-111.9089,35.2707],[-111.9107,35.2678],[-111.912,35.2662],[-111.9144,35.2645],[-111.917,35.2628],[-111.9194,35.2617],[-111.9215,35.2613],[-111.9239,35.261],[-111.9261,35.2607],[-111.9293,35.2604],[-111.9305,35.2602],[-111.9411,35.26],[-111.9448,35.2599],[-111.9461,35.2599],[-111.956,35.2597],[-111.9636,35.2596],[-111.9664,35.2596],[-111.9693,35.2603],[-111.9722,35.261],[-111.9745,35.2614],[-111.9776,35.2613],[-111.9806,35.261],[-111.9846,35.2602],[-111.9887,35.2594],[-111.9909,35.2591],[-111.9933,35.2586],[-111.9963,35.2589],[-111.9989,35.2593],[-112,35.2596],[-112,35.2596],[-112.0043,35.2605],[-112.0098,35.2619],[-112.0138,35.2628],[-112.0188,35.2632],[-112.0236,35.2634],[-112.0284,35.2638],[-112.0335,35.2639],[-112.0397,35.2639],[-112.0448,35.2638],[-112.046,35.2641],[-112.0473,35.2644],[-112.0484,35.2648],[-112.0498,35.265],[-112.0515,35.265],[-112.0538,35.2651],[-112.0569,35.265],[-112.0598,35.2651],[-112.0625,35.2651],[-112.065,35.2655],[-112.0671,35.2658],[-112.0683,35.2659],[-112.0696,35.2662],[-112.0712,35.2667],[-112.0727,35.2673],[-112.075,35.2671],[-112.0761,35.2664],[-112.0772,35.2659],[-112.0788,35.2652],[-112.0798,35.2648],[-112.0812,35.2646],[-112.0826,35.2648],[-112.085,35.2649],[-112.0869,35.265],[-112.0881,35.2648],[-112.0913,35.2642],[-112.1033,35.2623],[-112.1051,35.2617],[-112.1086,35.2601],[-112.111,35.259],[-112.1175,35.2587],[-112.1191,35.2586],[-112.1208,35.2596],[-112.1217,35.2607],[-112.1226,35.2586],[-112.1245,35.2585],[-112.1268,35.2582],[-112.1292,35.2581],[-112.1372,35.2581],[-112.1419,35.258],[-112.1447,35.2584],[-112.1469,35.2593],[-112.1506,35.2609],[-112.1514,35.2598],[-112.1522,35.2587],[-112.1532,35.2581],[-112.1549,35.2575],[-112.1588,35.2573],[-112.1656,35.2572],[-112.1677,35.2571],[-112.1697,35.2573],[-112.1721,35.2572],[-112.175,35.2575],[-112.1773,35.2579],[-112.179,35.258],[-112.1821,35.258],[-112.1844,35.258],[-112.1863,35.258],[-112.1863,35.2562],[-112.1906,35.2549],[-112.1885,35.2508],[-112.1904,35.2503],[-112.1943,35.2489],[-112.1963,35.2487],[-112.1981,35.2481],[-112.1999,35.2479],[-112.2021,35.2479],[-112.2041,35.2479],[-112.2056,35.2477],[-112.2071,35.2474],[-112.2091,35.2465],[-112.2109,35.2457],[-112.2106,35.2447],[-112.2122,35.2445],[-112.2134,35.2439],[-112.2164,35.2415],[-112.2173,35.2407],[-112.2184,35.2396],[-112.2201,35.2382],[-112.2219,35.2369],[-112.2271,35.2353],[-112.2314,35.2327],[-112.2332,35.2309],[-112.2351,35.2285],[-112.2365,35.2272],[-112.237,35.2262],[-112.2383,35.2251],[-112.2399,35.2243],[-112.2419,35.2235],[-112.2436,35.2232],[-112.2456,35.2229],[-112.2484,35.2231],[-112.2518,35.2231],[-112.2561,35.2226],[-112.261,35.2222],[-112.2654,35.222],[-112.2703,35.2218],[-112.2743,35.2211],[-112.2762,35.2205],[-112.2785,35.2199],[-112.2804,35.2194],[-112.2829,35.2192],[-112.2844,35.2191],[-112.2866,35.2195],[-112.2904,35.2202],[-112.2924,35.2206],[-112.2942,35.2208],[-112.2965,35.2211],[-112.2991,35.2208],[-112.3025,35.22],[-112.3055,35.2198],[-112.3074,35.2199],[-112.3094,35.2202],[-112.3212,35.2228],[-112.3236,35.2231],[-112.3265,35.223],[-112.329,35.2226],[-112.3323,35.2221],[-112.3338,35.2214],[-112.3363,35.2204],[-112.3377,35.2196],[-112.3398,35.2188],[-112.342,35.2185],[-112.3434,35.2183],[-112.3445,35.2181],[-112.346,35.2192],[-112.3474,35.2195],[-112.3486,35.2198],[-112.3495,35.2209],[-112.3505,35.2214],[-112.3516,35.2218],[-112.3536,35.2226],[-112.3631,35.2229],[-112.3686,35.2227]],[[-98.6941,35.5261],[-98.7119,35.5261],[-98.7125,35.5251],[-98.714,35.5228],[-98.7152,35.5221],[-98.7179,35.5226],[-98.7201,35.5228],[-98.7223,35.5227],[-98.7264,35.5224],[-98.734,35.5223],[-98.741,35.5218],[-98.7955,35.522],[-98.8176,35.5221],[-98.8223,35.522],[-98.8259,35.5217],[-98.8277,35.5214],[-98.829,35.5209],[-98.8303,35.5203],[-98.8326,35.5188],[-98.8344,35.518],[-98.8393,35.5165],[-98.8415,35.5159],[-98.8449,35.5159],[-98.8509,35.5159],[-98.8615,35.5158],[-98.8682,35.5158],[-98.8692,35.5146],[-98.8703,35.5144],[-98.8716,35.515],[-98.8738,35.5158],[-98.8774,35.5158],[-98.8848,35.5157],[-98.8914,35.5158],[-98.8947,35.5161],[-98.9058,35.5162],[-98.9117,35.5158],[-98.915,35.5153],[-98.9181,35.5147],[-98.9205,35.5148],[-98.9227,35.5153],[-98.9246,35.5158],[-98.9268,35.516],[-98.9303,35.5158],[-98.9324,35.5158],[-98.9349,35.5147],[-98.9372,35.5141],[-98.9401,35.5142],[-98.9414,35.5147],[-98.9424,35.5152],[-98.9438,35.5157],[-98.9452,35.5158],[-98.9503,35.5156],[-98.9647,35.5154],[-98.9647,35.5029],[-98.9648,35.5],[-98.9648,35.5],[-98.965,35.4967],[-98.9654,35.4952],[-98.9676,35.4915],[-98.9698,35.4882],[-98.9725,35.4844],[-98.9752,35.4796],[-99,35.4797],[-99.03,35.4799],[-99.0407,35.4797],[-99.0554,35.4797],[-99.0847,35.4797],[-99.0905,35.4798],[-99.1098,35.4797],[-99.1141,35.4792],[-99.1158,35.4784],[-99.117,35.4798],[-99.1197,35.4783],[-99.1286,35.4745],[-99.136,35.4713],[-99.1402,35.468],[-99.1458,35.4633],[-99.1514,35.4584],[-99.1562,35.4542],[-99.1589,35.4519],[-99.1606,35.4511],[-99.1705,35.4478],[-99.175,35.4464],[-99.1782,35.4457],[-99.1828,35.4449],[-99.1842,35.4446],[-99.1857,35.4435],[-99.1869,35.4429],[-99.1921,35.4398],[-99.1977,35.4361],[-99.2,35.4343],[-99.2053,35.4313],[-99.2086,35.4291],[-99.2106,35.4281],[-99.2117,35.4269],[-99.2122,35.4253],[-99.2127,35.4245],[-99.2147,35.4247],[-99.2158,35.4248],[-99.2176,35.4244],[-99.2257,35.4221],[-99.2287,35.422],[-99.2372,35.4215],[-99.2474,35.4218],[-99.2536,35.4216],[-99.2639,35.4217],[-99.2659,35.4221],[-99.2757,35.4221],[-99.2938,35.422],[-99.3027,35.4219],[-99.3043,35.422],[-99.3103,35.4219],[-99.3173,35.4218],[-99.3203,35.4219],[-99.3265,35.4221],[-99.3359,35.4219],[-99.3552,35.4217],[-99.3689,35.4218],[-99.3728,35.4218],[-99.3968,35.4219],[-99.399,35.4212],[-99.3995,35.4203],[-99.3996,35.4131],[-99.4011,35.4118],[-99.4025,35.4116],[-99.4172,35.4118],[-99.435,35.4117],[-99.4622,35.4115],[-99.4646,35.4113],[-99.4672,35.4101],[-99.4732,35.4069],[-99.4785,35.4039],[-99.4961,35.3945],[-99.5097,35.387],[-99.5132,35.3856],[-99.5155,35.3838],[-99.5175,35.3828],[-99.5245,35.3791],[-99.5321,35.3752],[-99.5397,35.3709],[-99.5437,35.3688],[-99.5484,35.3653],[-99.5552,35.3605],[-99.5606,35.3567],[-99.5617,35.356],[-99.5725,35.3501],[-99.5844,35.3431],[-99.5868,35.3418],[-99.5894,35.3404],[-99.5907,35.3402],[-99.5948,35.3361],[-99.5972,35.3358],[-99.5997,35.3332],[-99.6065,35.3251],[-99.6091,35.3218],[-99.613,35.3175],[-99.6149,35.3161],[-99.6178,35.3148],[-99.6247,35.3123],[-99.628,35.3112],[-99.6389,35.308],[-99.64,35.3074],[-99.6401,35.2885],[-99.64,35.2811],[-99.64,35.2729],[-99.6403,35.2716],[-99.6418,35.2674],[-99.6434,35.2645],[-99.6444,35.2635],[-99.6499,35.2621],[-99.657,35.262],[-99.6768,35.2624],[-99.7052,35.2625],[-99.711,35.2624],[-99.7156,35.2618],[-99.721,35.261],[-99.7324,35.2592],[-99.7406,35.258],[-99.7461,35.2571],[-99.7477,35.2563],[-99.7503,35.2548],[-99.7564,35.2511],[-99.7648,35.2463],[-99.7791,35.2393],[-99.7843,35.236],[-99.8018,35.2264],[-99.8134,35.2199],[-99.8199,35.2162],[-99.8224,35.2153],[-99.8256,35.2149],[-99.8732,35.2151],[-99.8754,35.215],[-99.8771,35.215],[-99.8801,35.2149],[-99.8848,35.2146],[-99.8881,35.2149],[-99.893,35.2152],[-99.8954,35.2153],[-99.8987,35.2151],[-99.9043,35.2144],[-99.9078,35.214],[-99.9093,35.2143],[-99.9127,35.2156],[-99.9164,35.2169],[-99.9195,35.2181],[-99.9217,35.2188],[-99.9239,35.219],[-99.9319,35.2191],[-99.9768,35.2191],[-99.9861,35.2191],[-99.9927,35.2192],[-99.9947,35.2193],[-99.9961,35.2198],[-99.9983,35.2214],[-100,35.2227],[-100.0003,35.2229],[-100.0021,35.2242],[-100.0047,35.2259],[-100.0068,35.2265],[-100.0106,35.2265],[-100.0167,35.2265],[-100.0229,35.2267],[-100.0348,35.2266],[-100.0561,35.2265],[-100.1057,35.2266],[-100.1253,35.2265],[-100.127,35.2265],[-100.1283,35.2257],[-100.1302,35.2248],[-100.1318,35.2252],[-100.1337,35.2264],[-100.136,35.2265],[-100.1483,35.2267],[-100.1618,35.2265],[-100.1638,35.2258],[-100.1659,35.2249],[-100.167,35.2252],[-100.1681,35.226],[-100.1693,35.2265],[-100.1708,35.2266],[-100.1979,35.2265],[-100.2014,35.2265],[-100.2167,35.2265],[-100.2228,35.2266],[-100.2272,35.2267],[-100.2389,35.2265],[-100.2445,35.2265],[-100.2584,35.2265],[-100.268,35.2267],[-100.287,35.2266],[-100.3353,35.2265],[-100.3402,35.2266],[-100.3414,35.2263],[-100.3437,35.2263],[-100.3467,35.2262],[-100.3501,35.2263],[-100.3524,35.2267],[-100.3544,35.2271],[-100.3562,35.2275],[-100.359,35.2277],[-100.363,35.2281],[-100.3672,35.2284],[-100.3717,35.2287],[-100.3749,35.2289],[-100.3774,35.2288],[-100.3809,35.2277],[-100.3821,35.2273],[-100.3839,35.2268],[-100.3855,35.2267],[-100.3922,35.2267],[-100.4307,35.2267],[-100.4785,35.2267],[-100.4965,35.2267],[-100.4981,35.2268],[-100.4997,35.2272],[-100.5017,35.2285],[-100.5032,35.2287],[-100.5043,35.2284],[-100.5054,35.2275],[-100.5081,35.2273],[-100.5131,35.2271],[-100.5157,35.2272],[-100.5187,35.2274],[-100.5236,35.2274],[-100.5259,35.2273],[-100.5343,35.227],[-100.5356,35.2272],[-100.5367,35.228],[-100.5386,35.2288],[-100.5397,35.2286],[-100.5407,35.2278],[-100.5418,35.227],[-100.5435,35.2266],[-100.5708,35.2267],[-100.5787,35.2268],[-100.5834,35.2276],[-100.5845,35.2279],[-100.5871,35.2285],[-100.5882,35.2288],[-100.5897,35.2293],[-100.5921,35.23],[-100.5945,35.2308],[-100.5967,35.2314],[-100.6053,35.2328],[-100.6069,35.2333],[-100.6086,35.2337],[-100.6123,35.2344],[-100.6155,35.2346],[-100.6174,35.2343],[-100.621,35.2331],[-100.626,35.2313],[-100.6327,35.2293],[-100.6387,35.2275],[-100.6432,35.2263],[-100.6553,35.2223],[-100.6586,35.2212],[-100.6701,35.2178],[-100.6725,35.2174],[-100.6761,35.217],[-100.7003,35.2149],[-100.7144,35.2135],[-100.7185,35.213],[-100.7219,35.2128],[-100.7254,35.2124],[-100.7286,35.2124],[-100.7345,35.2126],[-100.7375,35.2127],[-100.7397,35.2139],[-100.742,35.2151],[-100.7435,35.2148],[-100.7454,35.2143],[-100.7519,35.2128],[-100.7544,35.2121],[-100.7579,35.2122],[-100.762,35.2132],[-100.764,35.2138],[-100.7675,35.2147],[-100.7697,35.215],[-100.7722,35.2146],[-100.7744,35.2136],[-100.7769,35.2114],[-100.7809,35.2071],[-100.782,35.2064],[-100.7837,35.2057],[-100.7878,35.2038],[-100.7919,35.2022],[-100.7944,35.2007],[-100.7971,35.1986],[-100.8019,35.1948],[-100.8068,35.1908],[-100.809,35.1892],[-100.8113,35.1879],[-100.8185,35.1842],[-100.8288,35.1788],[-100.8307,35.1784],[-100.8331,35.1785],[-100.8627,35.1834],[-100.8663,35.1838],[-100.8678,35.1836],[-100.8702,35.1823],[-100.8724,35.1809],[-100.8751,35.1804],[-100.881,35.1789],[-100.8847,35.1789],[-100.8931,35.1789],[-100.895,35.179],[-100.8981,35.18],[-100.9021,35.1812],[-100.9057,35.1824],[-100.9077,35.1828],[-100.909,35.1829],[-100.9103,35.1831],[-100.9469,35.1831],[-100.9747,35.1829],[-100.9784,35.1824],[-100.9843,35.1815],[-100.9878,35.1809],[-100.9914,35.1812],[-100.9961,35.1816],[-101,35.1821],[-101.0001,35.1821],[-101.0039,35.1829],[-101.01,35.1829],[-101.0152,35.1833],[-101.0333,35.1868],[-101.0684,35.1933],[-101.1031,35.1996],[-101.1298,35.2046],[-101.1452,35.2073],[-101.1515,35.2075],[-101.1665,35.2075],[-101.1802,35.2078],[-101.2031,35.2077],[-101.2193,35.2079],[-101.2337,35.2078],[-101.2512,35.2078],[-101.2883,35.2077],[-101.33,35.2076],[-101.3412,35.2075],[-101.3506,35.2074],[-101.3582,35.2073],[-101.3664,35.2074],[-101.3723,35.2072],[-101.3734,35.2076],[-101.3854,35.2076],[-101.3899,35.2075],[-101.3919,35.2074],[-101.3946,35.2074],[-101.4358,35.2075],[-101.4498,35.2073],[-101.4588,35.2075],[-101.4717,35.2082],[-101.4746,35.2089],[-101.4768,35.2101],[-101.4806,35.2118],[-101.4858,35.2141],[-101.5,35.2207],[-101.5023,35.221],[-101.5053,35.2212],[-101.5138,35.2212],[-101.5278,35.2209],[-101.5397,35.2212],[-101.5414,35.2202],[-101.543,35.2188],[-101.5443,35.22],[-101.5454,35.2208],[-101.548,35.2213],[-101.5521,35.2213],[-101.5576,35.2211],[-101.5714,35.2211],[-101.5738,35.2204],[-101.5751,35.2199],[-101.5765,35.2192],[-101.5786,35.219],[-101.5804,35.2198],[-101.5816,35.2211],[-101.5827,35.2211],[-101.5855,35.221],[-101.588,35.2211],[-101.604,35.2213],[-101.6144,35.2214],[-101.6182,35.2219],[-101.6196,35.2219],[-101.6231,35.2218],[-101.6393,35.2219],[-101.6535,35.222],[-101.6712,35.2221],[-101.6779,35.2219],[-101.6844,35.2218],[-101.6845,35.2387],[-101.689,35.2406],[-101.6989,35.2377],[-101.7049,35.2359],[-101.7092,35.2344],[-101.7152,35.2309],[-101.7229,35.2286]],[[-103.0277,35.1816],[-103.0297,35.1823],[-103.0311,35.1821],[-103.0332,35.1819],[-103.0378,35.1824],[-103.0436,35.1826],[-103.0508,35.1826],[-103.0625,35.1832],[-103.068,35.1829],[-103.0694,35.1828],[-103.0726,35.1832],[-103.0757,35.1832],[-103.0783,35.1829],[-103.0811,35.182],[-103.087,35.1801],[-103.0946,35.1774],[-103.1023,35.175],[-103.1277,35.1662],[-103.2266,35.1325],[-103.2395,35.128],[-103.2774,35.1143],[-103.239,35.114],[-103.1721,35.1143],[-103.1683,35.1157],[-103.164,35.1179],[-103.1578,35.1217],[-103.1533,35.1238],[-103.15,35.124],[-103.1438,35.1238],[-103.1293,35.1283],[-103.1118,35.1352],[-103.102,35.1425],[-103.0698,35.1675],[-103.0627,35.1726],[-103.061,35.1744],[-103.0585,35.1757],[-103.0557,35.1768],[-103.0528,35.1775],[-103.0516,35.1777],[-103.0486,35.1781],[-103.0407,35.179],[-103.0366,35.1795],[-103.0277,35.1816],[-103.0245,35.1813],[-103.0226,35.1812],[-103.0205,35.1819],[-103.0169,35.1823],[-103.0123,35.1828],[-103.0084,35.1833],[-103,35.1843],[-103,35.1843],[-102.995,35.1849],[-102.9901,35.1855],[-102.9855,35.1861],[-102.9839,35.1865],[-102.9745,35.1898],[-102.9653,35.1929],[-102.9565,35.1961],[-102.9501,35.1984],[-102.9456,35.2001],[-102.9427,35.2011],[-102.9414,35.2017],[-102.9398,35.2024],[-102.9345,35.2047],[-102.9294,35.2071],[-102.9227,35.21],[-102.9205,35.2111],[-102.9198,35.2118],[-102.9186,35.2118],[-102.915,35.2136],[-102.9119,35.215],[-102.9095,35.216],[-102.9075,35.2168],[-102.9054,35.2173],[-102.8891,35.2214],[-102.8873,35.2218],[-102.8861,35.2221],[-102.8837,35.2227],[-102.8774,35.2243],[-102.8756,35.2247],[-102.8675,35.2262],[-102.8528,35.2316],[-102.8405,35.2359],[-102.8348,35.238],[-102.8322,35.2389],[-102.818,35.244],[-102.8162,35.2445],[-102.8148,35.2448],[-102.8071,35.2455],[-102.8006,35.246],[-102.7966,35.2471],[-102.793,35.2481],[-102.788,35.2496],[-102.7861,35.2499],[-102.7836,35.2503],[-102.78,35.2507],[-102.7761,35.2515],[-102.7734,35.2521],[-102.7702,35.2536],[-102.7648,35.256],[-102.7608,35.2578],[-102.7498,35.2618],[-102.7417,35.2646],[-102.7315,35.268],[-102.7272,35.269],[-102.723,35.2696],[-102.7205,35.2697],[-102.717,35.2698],[-102.6895,35.2705],[-102.6864,35.2707],[-102.6821,35.2704],[-102.6768,35.2711],[-102.6731,35.2709],[-102.6655,35.2712],[-102.6626,35.2713],[-102.6605,35.2717],[-102.656,35.2718],[-102.6466,35.2721],[-102.6433,35.2721],[-102.633,35.2725],[-102.6236,35.2728],[-102.6215,35.2729],[-102.5904,35.2738],[-102.5844,35.2739],[-102.5805,35.2734],[-102.5772,35.2729],[-102.573,35.2721],[-102.5675,35.271],[-102.5631,35.2702],[-102.5615,35.2697],[-102.5595,35.2692],[-102.5567,35.2687],[-102.5542,35.2685],[-102.5461,35.267],[-102.5432,35.2664],[-102.5109,35.2604],[-102.5085,35.2599],[-102.5054,35.2593],[-102.5037,35.259],[-102.5021,35.2585],[-102.5005,35.2581],[-102.4986,35.2581],[-102.4952,35.2574],[-102.4877,35.256],[-102.4808,35.2547],[-102.4727,35.2532],[-102.4633,35.2513],[-102.457,35.2502],[-102.4559,35.25],[-102.4456,35.2482],[-102.4441,35.2478],[-102.4347,35.2436],[-102.4331,35.2431],[-102.4282,35.243],[-102.4196,35.2431],[-102.418,35.2428],[-102.4073,35.2408],[-102.4046,35.2403],[-102.3513,35.2301],[-102.297,35.2198],[-102.2507,35.2111],[-102.2488,35.2107],[-102.2436,35.2105],[-102.2161,35.2098],[-102.2137,35.2095],[-102.2082,35.2095],[-102.2044,35.2094],[-102.1952,35.2092],[-102.1927,35.2094],[-102.1883,35.2097],[-102.1732,35.2093],[-102.1679,35.2092],[-102.1647,35.2085],[-102.1543,35.206],[-102.153,35.2056],[-102.1073,35.1945],[-102.102,35.1933],[-102.0992,35.1926],[-102.0965,35.1924],[-102.0595,35.1916],[-102.0458,35.1911],[-102.0138,35.1905],[-102.0035,35.1902],[-102.0009,35.1901],[-102,35.1901],[-101.9956,35.19],[-101.9887,35.1898],[-101.982,35.1896],[-101.9792,35.1894],[-101.9768,35.1888],[-101.9734,35.1876],[-101.9699,35.1879],[-101.9674,35.1888],[-101.9645,35.1906],[-101.9621,35.1915],[-101.9587,35.1916],[-101.954,35.1917],[-101.9314,35.1915],[-101.925,35.1915],[-101.9215,35.1915],[-101.9181,35.1927],[-101.9155,35.1939],[-101.9142,35.1953],[-101.9044,35.2035],[-101.9027,35.2049],[-101.9014,35.2059],[-101.9002,35.2061],[-101.8941,35.2062],[-101.8881,35.206],[-101.8827,35.2104],[-101.8815,35.2111],[-101.8665,35.2113],[-101.8333,35.2073],[-101.8301,35.2221],[-101.8038,35.2221],[-101.7655,35.2221],[-101.7642,35.2222],[-101.7616,35.2213],[-101.7597,35.2207],[-101.7576,35.2206],[-101.7547,35.2212],[-101.7505,35.2221]],[[-103.3588,35.1121],[-103.3605,35.1129],[-103.3651,35.115],[-103.4408,35.1462],[-103.4435,35.1467],[-103.4496,35.1489],[-103.4552,35.1513],[-103.4643,35.1549],[-103.4713,35.1581],[-103.4748,35.1606],[-103.4792,35.1658],[-103.4827,35.169],[-103.4873,35.1715],[-103.4917,35.1725],[-103.501,35.1726],[-103.5786,35.1724],[-103.6552,35.1721],[-103.6695,35.172]],[[-103.3311,35.1059],[-103.3315,35.1122],[-103.3383,35.112],[-103.3588,35.1121],[-103.3567,35.1111],[-103.3532,35.1096],[-103.3499,35.1082],[-103.3458,35.1069],[-103.3415,35.1061],[-103.3398,35.1061],[-103.3323,35.1061],[-103.3311,35.1059]],[[-103.3311,35.1059],[-103.3118,35.1062],[-103.2774,35.1143],[-103.3315,35.1138],[-103.3315,35.1122],[-103.296,35.113]],[[-109.5806,35.1153],[-109.5996,35.1083],[-109.6087,35.1052],[-109.616,35.1031],[-109.6373,35.1002],[-109.643,35.1049],[-109.6483,35.1092],[-109.6497,35.1113],[-109.6554,35.1095],[-109.6668,35.106],[-109.6734,35.1037],[-109.683,35.101],[-109.6893,35.0994],[-109.6928,35.0992],[-109.6969,35.1002],[-109.7007,35.1006],[-109.7058,35.099],[-109.7384,35.0889],[-109.7543,35.0844],[-109.7655,35.0803],[-109.7779,35.0713],[-109.8249,35.0358],[-109.7917,35.0543],[-109.7801,35.0608],[-109.7689,35.0664],[-109.7552,35.0703],[-109.713,35.0827],[-109.6933,35.0885],[-109.6732,35.0943],[-109.6596,35.0968],[-109.6545,35.0976],[-109.6373,35.1002]],[[-107.3008,34.9955],[-107.3073,35],[-107.3073,35],[-107.31,35.0019],[-107.3207,35.0108],[-107.3302,35.0201],[-107.3317,35.0229],[-107.3348,35.03],[-107.3359,35.0322],[-107.3364,35.0333],[-107.3376,35.034],[-107.3402,35.0346],[-107.3406,35.0356],[-107.3412,35.0364],[-107.3415,35.0376],[-107.3418,35.0393],[-107.3403,35.0404],[-107.3397,35.0413],[-107.3412,35.0419],[-107.3431,35.0418],[-107.3444,35.0417],[-107.3459,35.0422],[-107.3478,35.0432],[-107.35,35.0438],[-107.3514,35.0437],[-107.353,35.0428],[-107.3543,35.0422],[-107.356,35.0418],[-107.3581,35.0411],[-107.3597,35.0407],[-107.3613,35.0404],[-107.3628,35.0398],[-107.3651,35.0391],[-107.3706,35.0383],[-107.3749,35.0382],[-107.3779,35.0377],[-107.3815,35.0381],[-107.3847,35.0394],[-107.3876,35.0412],[-107.3918,35.0444],[-107.395,35.0467],[-107.3972,35.0477],[-107.404,35.0472],[-107.4268,35.0455],[-107.4307,35.0448],[-107.4356,35.0458],[-107.4407,35.0475],[-107.4458,35.0497],[-107.4511,35.0513],[-107.4564,35.0522],[-107.4602,35.053],[-107.4621,35.053],[-107.466,35.0523],[-107.4691,35.0516],[-107.4732,35.0513],[-107.4919,35.0512],[-107.4951,35.051],[-107.5025,35.0509],[-107.5114,35.0515],[-107.5134,35.0513],[-107.5159,35.0528],[-107.5186,35.0542],[-107.5199,35.0562],[-107.5256,35.0692],[-107.5299,35.0769],[-107.5338,35.0799],[-107.5412,35.0839],[-107.5445,35.0854],[-107.5479,35.0861],[-107.5529,35.086],[-107.5588,35.0857],[-107.5605,35.0854],[-107.5806,35.0838],[-107.5936,35.0827],[-107.5996,35.0821],[-107.6148,35.0824],[-107.6224,35.0824],[-107.6293,35.082],[-107.6316,35.0816],[-107.6412,35.0788],[-107.6464,35.0774],[-107.6501,35.0766],[-107.6512,35.0761],[-107.6537,35.0764],[-107.6554,35.0757],[-107.6558,35.0744],[-107.6558,35.0735],[-107.6566,35.0726],[-107.6579,35.0723],[-107.66,35.0725],[-107.6616,35.0728],[-107.664,35.0725],[-107.6792,35.0687],[-107.6843,35.0673],[-107.6862,35.0668],[-107.6874,35.0657],[-107.6902,35.0638],[-107.6925,35.0623],[-107.6964,35.0612],[-107.6995,35.0608],[-107.7018,35.0602],[-107.7046,35.0593],[-107.7068,35.0589],[-107.7086,35.0593],[-107.7111,35.0605],[-107.7127,35.062],[-107.7153,35.0641],[-107.7177,35.0654],[-107.731,35.0667],[-107.7358,35.0678],[-107.7576,35.0744],[-107.7677,35.0829],[-107.7693,35.0855],[-107.7717,35.0949],[-107.7731,35.0968],[-107.7785,35.1039],[-107.7823,35.1112],[-107.7844,35.1138],[-107.7923,35.1189],[-107.8176,35.1338],[-107.8541,35.1526],[-107.8648,35.1555],[-107.869,35.1567],[-107.8772,35.1602],[-107.8802,35.1617],[-107.8817,35.1624],[-107.8843,35.1629],[-107.8868,35.1632],[-107.8875,35.164],[-107.9149,35.2188],[-107.9163,35.2209],[-107.9216,35.225],[-107.9457,35.2418],[-107.9565,35.2493],[-107.9617,35.2544],[-107.9715,35.2641],[-107.9752,35.267],[-107.9774,35.2699],[-107.983,35.2802],[-107.9862,35.288],[-107.9869,35.2921],[-107.9893,35.3095],[-107.9908,35.3126],[-107.995,35.3203],[-108,35.3302],[-108.0002,35.3304],[-108.0113,35.3489],[-108.0141,35.351],[-108.0166,35.353],[-108.022,35.3555],[-108.0277,35.3581],[-108.0334,35.3606],[-108.0377,35.3623],[-108.043,35.3642],[-108.0484,35.3664],[-108.0525,35.3669],[-108.0561,35.3678],[-108.0638,35.3694],[-108.0723,35.3708],[-108.0872,35.3737],[-108.1074,35.3774],[-108.1147,35.3791],[-108.1238,35.3819],[-108.131,35.384],[-108.1392,35.3853],[-108.1547,35.3876],[-108.1631,35.3885],[-108.1723,35.389],[-108.1898,35.3898],[-108.2057,35.3929],[-108.2448,35.4011],[-108.2498,35.4023],[-108.3763,35.4508],[-108.4041,35.4637],[-108.4122,35.4688],[-108.4215,35.4752],[-108.4288,35.4789],[-108.447,35.4829],[-108.4619,35.486],[-108.481,35.4905],[-108.4899,35.4923],[-108.5019,35.4964],[-108.5112,35.5],[-108.5112,35.5],[-108.5429,35.5119],[-108.6015,35.5296],[-108.6139,35.5305],[-108.6445,35.5319],[-108.6532,35.5325],[-108.6616,35.5301],[-108.6662,35.5288],[-108.6714,35.5298],[-108.6778,35.5307],[-108.6871,35.5292],[-108.6968,35.5296],[-108.7081,35.5294],[-108.7194,35.53],[-108.7216,35.53],[-108.7245,35.5297],[-108.7286,35.5301],[-108.7311,35.5302],[-108.7325,35.5307],[-108.7337,35.531],[-108.7488,35.5263],[-108.7505,35.5254],[-108.7588,35.5226],[-108.7614,35.5222],[-108.7915,35.5127],[-108.7941,35.5121],[-108.8307,35.5057],[-108.8624,35.5],[-108.8624,35.5],[-108.8797,35.4971],[-108.8874,35.495],[-108.8933,35.4922],[-108.8998,35.488],[-108.9009,35.4872],[-108.904,35.4853],[-108.92,35.4768],[-108.9338,35.4688],[-108.9358,35.4674],[-108.9379,35.4658],[-108.9428,35.461],[-108.9471,35.4568],[-108.9493,35.4543],[-108.9515,35.4518],[-108.9534,35.4506],[-108.9551,35.4497],[-108.9593,35.4486],[-108.9663,35.4431],[-108.9887,35.4281],[-108.994,35.4245],[-108.9967,35.4219],[-108.9992,35.4177],[-109,35.4156],[-109,35.4156],[-109.0005,35.4147],[-109.0387,35.3738],[-109.0421,35.3696],[-109.0435,35.3665],[-109.0474,35.3615],[-109.0517,35.3578],[-109.0543,35.3514],[-109.0616,35.342],[-109.0724,35.3331],[-109.0872,35.3218],[-109.096,35.3159],[-109.1228,35.3034],[-109.1512,35.2912],[-109.1703,35.2833],[-109.1784,35.2804],[-109.1849,35.2806],[-109.1941,35.2814],[-109.2034,35.2825],[-109.2086,35.283],[-109.2116,35.2839],[-109.2143,35.2829],[-109.2172,35.2832],[-109.2369,35.2832],[-109.2487,35.2834],[-109.2537,35.2816],[-109.2645,35.2776],[-109.2779,35.2705],[-109.286,35.2662],[-109.2877,35.2643],[-109.2894,35.2605],[-109.293,35.2518],[-109.2953,35.2459],[-109.2961,35.2446],[-109.296,35.2436],[-109.2997,35.2409],[-109.3018,35.2397],[-109.304,35.2382],[-109.3056,35.2362],[-109.3142,35.2294],[-109.3202,35.2251],[-109.3225,35.2234],[-109.3245,35.2213],[-109.3254,35.2205],[-109.3285,35.2186],[-109.331,35.2175],[-109.3327,35.217],[-109.3339,35.2164],[-109.3355,35.2154],[-109.3381,35.2138],[-109.3456,35.2106],[-109.3504,35.209],[-109.3574,35.2072],[-109.3672,35.2052],[-109.3792,35.2027],[-109.3984,35.1986],[-109.4214,35.1989],[-109.4246,35.1989],[-109.4302,35.1983],[-109.4391,35.1972],[-109.4367,35.1922],[-109.4365,35.1909],[-109.4393,35.1897],[-109.444,35.1883],[-109.445,35.1879],[-109.4494,35.1863],[-109.4558,35.1836],[-109.4621,35.18],[-109.4654,35.1783],[-109.4768,35.171],[-109.4836,35.1664],[-109.4869,35.1644],[-109.4991,35.1563],[-109.5082,35.1501],[-109.5232,35.1403],[-109.53,35.136],[-109.541,35.1295],[-109.5452,35.1275],[-109.5681,35.119],[-109.5716,35.1173],[-109.5744,35.1169],[-109.5759,35.1163],[-109.5771,35.1163],[-109.5789,35.1159],[-109.5806,35.1153],[-109.5855,35.1174],[-109.588,35.1179],[-109.5932,35.1182],[-109.6027,35.1182],[-109.6046,35.1181],[-109.6066,35.1185],[-109.6084,35.1193],[-109.6103,35.12],[-109.6123,35.1202],[-109.6299,35.1174],[-109.6324,35.1169],[-109.6366,35.1156],[-109.6497,35.1113]],[[-107.1709,34.9832],[-107.2012,34.9881],[-107.2114,34.9899],[-107.2336,34.9929],[-107.244,34.9929],[-107.2556,34.9933],[-107.2646,34.9936],[-107.2813,34.9938],[-107.2917,34.9938],[-107.2968,34.9946],[-107.3008,34.9955],[-107.2674,34.9667],[-107.2605,34.962],[-107.2548,34.9606],[-107.2135,34.9573],[-107.2023,34.9565],[-107.1915,34.9553],[-107.1803,34.9551],[-107.1772,34.9569]],[[-107.1328,34.9777],[-107.1404,34.975],[-107.1495,34.972],[-107.1577,34.9681],[-107.1644,34.9636],[-107.1719,34.9595],[-107.1772,34.9569],[-107.1709,34.9832],[-107.1436,34.9789],[-107.1328,34.9777],[-107.1269,34.9793],[-107.0609,35],[-107.0605,35.0001],[-107,35.0201],[-106.9989,35.0204],[-106.8899,35.045],[-106.878,35.0478],[-106.8642,35.0509],[-106.8449,35.0538],[-106.802,35.0606],[-106.7975,35.061],[-106.7941,35.0618],[-106.7852,35.0634],[-106.7596,35.069],[-106.7517,35.0709],[-106.7201,35.0779],[-106.6959,35.0834],[-106.6881,35.0851],[-106.6841,35.0865],[-106.6833,35.0873],[-106.6798,35.0912],[-106.6791,35.0923],[-106.6781,35.0945],[-106.676,35.0956],[-106.6742,35.0954],[-106.6718,35.0952],[-106.6698,35.0937],[-106.6676,35.0921],[-106.6663,35.0911],[-106.6646,35.0894],[-106.662,35.088],[-106.6588,35.0863],[-106.6561,35.0852],[-106.6546,35.0849],[-106.6521,35.0846],[-106.6499,35.0843],[-106.645,35.0837],[-106.6381,35.0828],[-106.6251,35.0811],[-106.6169,35.081],[-106.6136,35.0811],[-106.6059,35.0799],[-106.6031,35.0796],[-106.5467,35.0737],[-106.5399,35.0728],[-106.5219,35.0709],[-106.4978,35.0682],[-106.4888,35.0661],[-106.4861,35.065],[-106.4816,35.063],[-106.4791,35.0627],[-106.4757,35.0629],[-106.4719,35.0634],[-106.4686,35.063],[-106.4652,35.0617],[-106.4604,35.061],[-106.4523,35.0615],[-106.4448,35.062],[-106.4401,35.0637],[-106.4345,35.0646],[-106.4275,35.0651],[-106.4256,35.0657],[-106.4236,35.0666],[-106.4156,35.0735],[-106.4107,35.0779],[-106.4083,35.0801],[-106.4059,35.0807],[-106.4039,35.081],[-106.4006,35.0807],[-106.3916,35.0806],[-106.3873,35.0816],[-106.3833,35.0842],[-106.3802,35.0865],[-106.3781,35.088],[-106.3773,35.0893],[-106.3761,35.0906],[-106.3745,35.0912],[-106.3729,35.0922],[-106.3715,35.0942],[-106.3697,35.0977],[-106.3663,35.1],[-106.3579,35.1007],[-106.3481,35.1028],[-106.3445,35.1045],[-106.3405,35.1073],[-106.3365,35.1098],[-106.3304,35.1139],[-106.3266,35.1153],[-106.3211,35.1148],[-106.3171,35.113],[-106.3129,35.1117],[-106.3068,35.1097],[-106.3048,35.108],[-106.3012,35.1053],[-106.2982,35.104],[-106.2908,35.1025],[-106.2858,35.1014],[-106.2823,35.1002],[-106.2807,35.0998],[-106.2752,35.0965],[-106.1855,35.0617],[-106.0751,35.0166],[-106.0657,35.0133],[-106.0563,35.0098],[-106.0491,35.0078],[-106.0387,35.0075],[-106.0316,35.0078],[-106.0241,35.0072],[-106.0176,35.0046],[-106.0108,35.0046],[-106.0007,35.0052],[-106,35.0052],[-105.9451,35.0051],[-105.9383,35.0052],[-105.9316,35.0063],[-105.9258,35.0071],[-105.9209,35.0068],[-105.9146,35.0064],[-105.909,35.0067],[-105.8965,35.0062],[-105.891,35.0061],[-105.8809,35.0057],[-105.7505,35.0046],[-105.729,35.0042],[-105.7235,35.0042],[-105.7193,35.006],[-105.7144,35.0085],[-105.7095,35.0106],[-105.7031,35.0106],[-105.6693,35.0088],[-105.6608,35.0082],[-105.573,35.0033],[-105.5608,35.0024],[-105.5526,35.0021],[-105.5501,35.0027],[-105.5471,35.0039],[-105.5449,35.0051],[-105.541,35.0063],[-105.5267,35.0063],[-105.5114,35.0054],[-105.4959,35.0051],[-105.4803,35.0024],[-105.4623,35],[-105.4623,35],[-105.3633,34.9947],[-105.1875,34.9865],[-105,34.9766],[-104.9955,34.9768],[-104.9917,34.9772],[-104.9889,34.9767],[-104.9743,34.9757],[-104.8697,34.9704],[-104.8673,34.9702],[-104.865,34.9699],[-104.8599,34.9697],[-104.8491,34.9696],[-104.8151,34.9691],[-104.794,34.9689],[-104.7876,34.9688],[-104.7841,34.9685],[-104.7779,34.9671],[-104.7689,34.9665],[-104.7658,34.9664],[-104.752,34.9651],[-104.7497,34.9651],[-104.742,34.964],[-104.7349,34.9614],[-104.7282,34.9575],[-104.7123,34.9483],[-104.6993,34.9406],[-104.6946,34.9384],[-104.6927,34.9384],[-104.6885,34.941],[-104.6835,34.944],[-104.6725,34.9447],[-104.6633,34.9453],[-104.6384,34.9497],[-104.6356,34.9503],[-104.6326,34.9509],[-104.5312,35],[-104.5309,35.0002],[-104.5163,35.0069],[-104.5036,35.0103],[-104.4957,35.0118],[-104.4811,35.0117],[-104.4693,35.0113],[-104.4644,35.0116],[-104.4557,35.0134],[-104.4439,35.0162],[-104.4343,35.0202],[-104.4197,35.027],[-104.396,35.0375],[-104.382,35.045],[-104.378,35.0473],[-104.3754,35.0479],[-104.366,35.0491],[-104.3472,35.0512],[-104.3369,35.0525],[-104.3315,35.054],[-104.3193,35.0573],[-104.3024,35.0619],[-104.2958,35.0632],[-104.2648,35.0689],[-104.2543,35.0707],[-104.2444,35.0724],[-104.2409,35.0725],[-104.2287,35.0722],[-104.2243,35.0725],[-104.2221,35.0725],[-104.2174,35.0716],[-104.2137,35.0705],[-104.2103,35.0698],[-104.1968,35.0678],[-104.1841,35.067],[-104.1827,35.0675],[-104.1812,35.0677],[-104.1798,35.0671],[-104.1788,35.0662],[-104.1776,35.0659],[-104.1763,35.0661],[-104.175,35.0667],[-104.1735,35.0676],[-104.1714,35.0685],[-104.0979,35.0867],[-104.0922,35.088],[-104.0843,35.0898],[-104.0772,35.0913],[-104.0753,35.0917],[-104.0718,35.0915],[-104.0706,35.0931],[-104.0699,35.0945],[-104.0687,35.0951],[-104.048,35.1005],[-104,35.1133],[-103.9918,35.1154],[-103.9769,35.1195],[-103.9684,35.1216],[-103.9657,35.1224],[-103.9613,35.1236],[-103.9556,35.1251],[-103.9508,35.1258],[-103.9447,35.1259],[-103.9385,35.1253],[-103.9316,35.1244],[-103.9198,35.1224],[-103.9172,35.122],[-103.9144,35.1218],[-103.9121,35.1215],[-103.9097,35.1206],[-103.8998,35.1198],[-103.8939,35.1189],[-103.8916,35.1186],[-103.8869,35.118],[-103.8782,35.1167],[-103.8733,35.1162],[-103.8702,35.1165],[-103.8668,35.1175],[-103.8591,35.1219],[-103.8372,35.1338],[-103.8309,35.1374],[-103.822,35.1424],[-103.8154,35.1459],[-103.8115,35.1472],[-103.807,35.1478],[-103.7974,35.1486],[-103.7921,35.1492],[-103.7885,35.1502],[-103.7854,35.1524],[-103.7745,35.1576],[-103.7686,35.1575],[-103.7373,35.1571],[-103.6695,35.172],[-103.734,35.1718],[-103.7444,35.1718],[-103.7745,35.1576]],[[-109.8249,35.0358],[-109.8442,35.0241],[-109.8586,35.0159],[-109.8692,35.0089],[-109.873,35.0077],[-109.8849,35.0038],[-109.9031,35.0003],[-109.9054,35],[-109.9055,35],[-109.9322,34.9956],[-109.9568,34.9919],[-109.9728,34.9908],[-109.9855,34.9913],[-109.9959,34.9911],[-110,34.9904],[-110,34.9904],[-110.0263,34.9858],[-110.0523,34.9812],[-110.0619,34.9795],[-110.0739,34.9773],[-110.087,34.9734],[-110.0916,34.9713],[-110.1013,34.9645],[-110.1096,34.9573],[-110.1187,34.9495],[-110.1281,34.9411],[-110.1301,34.9392],[-110.1315,34.9385],[-110.1372,34.9322],[-110.1442,34.9254],[-110.1488,34.9207],[-110.1527,34.9167],[-110.1548,34.9148],[-110.1564,34.9131],[-110.157,34.9122],[-110.164,34.9111],[-110.1732,34.9103],[-110.1807,34.9081],[-110.1879,34.9062],[-110.1914,34.9051],[-110.1976,34.9057],[-110.208,34.9069],[-110.2142,34.9077],[-110.2213,34.9084],[-110.2353,34.9103],[-110.2372,34.9106],[-110.2413,34.9118],[-110.2476,34.9145],[-110.2532,34.9177],[-110.2554,34.9194],[-110.2584,34.9227],[-110.2604,34.9254],[-110.263,34.9269],[-110.2649,34.9271],[-110.2668,34.9275],[-110.2723,34.9311],[-110.2757,34.9351],[-110.28,34.9393],[-110.2886,34.9433],[-110.3015,34.9488],[-110.3093,34.9523],[-110.3135,34.9541],[-110.3185,34.9553],[-110.3222,34.9553],[-110.3243,34.9549],[-110.3337,34.9546],[-110.3356,34.9549],[-110.3411,34.9549],[-110.3533,34.9566],[-110.3737,34.9601],[-110.4083,34.9653],[-110.4302,34.9687],[-110.4404,34.9697],[-110.4576,34.9704],[-110.4942,34.9726],[-110.5075,34.9727],[-110.5161,34.9739],[-110.5249,34.9753],[-110.5378,34.9793],[-110.5533,34.9847],[-110.5718,34.991],[-110.5915,34.9978],[-110.599,35],[-110.599,35],[-110.6176,35.0062],[-110.6212,35.0067],[-110.6255,35.0066],[-110.6286,35.0063],[-110.6328,35.0066],[-110.6352,35.0072],[-110.6366,35.0073],[-110.6394,35.0074],[-110.6422,35.0068],[-110.6434,35.0059],[-110.6449,35.0058],[-110.6493,35.006],[-110.6559,35.0069],[-110.6594,35.0077],[-110.6726,35.0126],[-110.6793,35.0154],[-110.6831,35.0183],[-110.6876,35.0205],[-110.6925,35.0223],[-110.6976,35.0242],[-110.7022,35.0259],[-110.7085,35.0285],[-110.7145,35.0307],[-110.7193,35.0342],[-110.7262,35.0371],[-110.735,35.0388],[-110.743,35.0407],[-110.7448,35.0412],[-110.7665,35.0474],[-110.821,35.0632],[-110.8261,35.0651],[-110.8861,35.0827],[-110.9123,35.0911],[-110.9267,35.0938],[-110.9543,35.0975],[-110.9681,35.0988],[-110.9748,35.0993],[-110.9843,35.1009],[-110.9922,35.1026],[-111,35.1044],[-111,35.1044],[-111.0261,35.1099],[-111.0357,35.1109],[-111.0682,35.1141],[-111.0866,35.1165],[-111.0934,35.1177],[-111.0973,35.1177],[-111.1032,35.1169],[-111.109,35.1163],[-111.117,35.1169],[-111.1294,35.1183],[-111.1515,35.12],[-111.1578,35.1212],[-111.1642,35.1225],[-111.1718,35.1246],[-111.1802,35.1277],[-111.1865,35.1298],[-111.1962,35.1335],[-111.2658,35.1588],[-111.2674,35.1597],[-111.272,35.1615],[-111.2769,35.1622],[-111.2826,35.1606],[-111.2863,35.1588],[-111.291,35.1578],[-111.2951,35.1576],[-111.3003,35.1594],[-111.318,35.1664],[-111.333,35.1721],[-111.3528,35.18],[-111.3753,35.1887],[-111.3975,35.198],[-111.4042,35.2006],[-111.4112,35.2026],[-111.4159,35.2026],[-111.4217,35.2017],[-111.4253,35.2015],[-111.4652,35.2024],[-111.4684,35.2024],[-111.4755,35.2013],[-111.4824,35.2026],[-111.5009,35.2064],[-111.5037,35.2082],[-111.5065,35.2106],[-111.5086,35.2127],[-111.5121,35.2139],[-111.5168,35.2136],[-111.5207,35.2136],[-111.5257,35.215],[-111.5271,35.2153],[-111.5289,35.2172],[-111.5324,35.219],[-111.5413,35.2192],[-111.5514,35.2186],[-111.5605,35.2192],[-111.571,35.2211],[-111.5775,35.2218],[-111.5845,35.2209],[-111.5908,35.2178],[-111.6018,35.2118],[-111.6119,35.2066],[-111.614,35.2048],[-111.6195,35.1992],[-111.6214,35.197],[-111.627,35.195],[-111.6331,35.1935],[-111.6348,35.1934],[-111.6391,35.1941],[-111.647,35.1963],[-111.6537,35.1981],[-111.6548,35.1956],[-111.6574,35.1934],[-111.6594,35.1927],[-111.6611,35.1925],[-111.6633,35.1915],[-111.6666,35.1891],[-111.6682,35.1882],[-111.6704,35.1879],[-111.6798,35.1878],[-111.684,35.1877],[-111.6875,35.1884],[-111.6894,35.1888],[-111.6908,35.189],[-111.6924,35.189],[-111.6945,35.1892],[-111.7053,35.1918],[-111.7079,35.1923],[-111.7104,35.1929],[-111.713,35.193],[-111.7166,35.193],[-111.7207,35.1929]],[[-114.5718,34.7606],[-114.5711,34.7591],[-114.5703,34.7582],[-114.5654,34.752],[-114.5504,34.7343],[-114.5451,34.7281],[-114.5424,34.7255],[-114.5353,34.7215],[-114.5325,34.7198],[-114.5287,34.7211],[-114.5285,34.7194]],[[-114.5325,34.7198],[-114.5308,34.7189]],[[-114.5104,34.7185],[-114.5101,34.7195],[-114.5099,34.7216],[-114.5105,34.7238],[-114.5106,34.7257],[-114.5133,34.7257],[-114.5154,34.7256],[-114.5173,34.7249],[-114.5201,34.7239],[-114.5287,34.7211]],[[-112.4998,35.2203],[-112.4976,35.2194],[-112.4967,35.2209],[-112.4998,35.2203],[-112.5013,35.2209],[-112.5085,35.221],[-112.5115,35.2211],[-112.513,35.2211],[-112.5155,35.221],[-112.5177,35.221],[-112.5426,35.221],[-112.5856,35.2294],[-112.588,35.2306],[-112.6406,35.2535],[-112.6595,35.262],[-112.6678,35.2655],[-112.6748,35.2686],[-112.6771,35.2697],[-112.6809,35.2712],[-112.6859,35.2728],[-112.6876,35.2738],[-112.6894,35.2755],[-112.6915,35.277],[-112.6936,35.2775],[-112.6962,35.278],[-112.698,35.2788],[-112.6996,35.2794],[-112.7018,35.2794],[-112.7036,35.2799],[-112.7196,35.2846],[-112.7275,35.287],[-112.7298,35.288],[-112.7315,35.2892],[-112.734,35.2921],[-112.7361,35.2936],[-112.7412,35.2951],[-112.7532,35.2982],[-112.7587,35.2998],[-112.7685,35.3032],[-112.7699,35.3035],[-112.7877,35.3064],[-112.7902,35.3068],[-112.7978,35.3087],[-112.8072,35.3114],[-112.811,35.3127],[-112.8146,35.3132],[-112.8189,35.3135],[-112.8231,35.314],[-112.8264,35.3147],[-112.8609,35.3224],[-112.8707,35.3249],[-112.8744,35.3259],[-112.8787,35.327],[-112.885,35.3287],[-112.903,35.3318],[-112.9296,35.3361],[-112.9393,35.3376],[-112.9452,35.3386],[-112.9489,35.3391],[-112.9522,35.3404],[-112.9562,35.3427],[-112.9614,35.3453],[-112.9648,35.348],[-112.967,35.3504],[-112.9746,35.365],[-112.9787,35.3737],[-112.9824,35.3783],[-112.9877,35.3826],[-113,35.3904],[-113.0001,35.3905],[-113.1096,35.4604],[-113.1721,35.5],[-113.1863,35.5093],[-113.2132,35.5249],[-113.2181,35.5265],[-113.2382,35.5321],[-113.3161,35.5529],[-113.322,35.554],[-113.3295,35.5537],[-113.3441,35.5526],[-113.3583,35.5521],[-113.3638,35.5528],[-113.3721,35.554],[-113.3793,35.5537],[-113.3882,35.5518],[-113.3932,35.5501],[-113.3977,35.5471],[-113.4038,35.5431],[-113.409,35.5413],[-113.4135,35.5406],[-113.4172,35.5393],[-113.4194,35.5373],[-113.4201,35.5351],[-113.4207,35.5321],[-113.4215,35.5302],[-113.4232,35.5294],[-113.427,35.5288],[-113.4296,35.5281],[-113.4427,35.5242],[-113.4482,35.5226],[-113.452,35.5219],[-113.4558,35.5216],[-113.4596,35.5221],[-113.4648,35.5229],[-113.4736,35.5241],[-113.4784,35.524],[-113.4841,35.5229],[-113.4886,35.5211],[-113.4925,35.519],[-113.5318,35.5],[-113.5318,35.5],[-113.548,35.4922],[-113.6074,35.4636],[-113.626,35.4545],[-113.6301,35.4525],[-113.6339,35.45],[-113.6387,35.4464],[-113.6429,35.4428],[-113.6445,35.4408],[-113.6467,35.4371],[-113.6484,35.4339],[-113.6493,35.43],[-113.6494,35.4273],[-113.6495,35.425],[-113.6488,35.4225],[-113.6473,35.4175],[-113.647,35.4131],[-113.6486,35.4085],[-113.6527,35.4011],[-113.6549,35.3961],[-113.6555,35.3932],[-113.6579,35.3889],[-113.6596,35.3858],[-113.6615,35.3839],[-113.6628,35.3823],[-113.6642,35.3802],[-113.6685,35.3736],[-113.6702,35.3706],[-113.6721,35.3683],[-113.6748,35.3669],[-113.6845,35.3633],[-113.6868,35.3624],[-113.6894,35.3617],[-113.693,35.3614],[-113.6952,35.3619],[-113.6987,35.3627],[-113.7028,35.3637],[-113.7071,35.365],[-113.7117,35.367],[-113.7135,35.368],[-113.7231,35.3746],[-113.7255,35.3768],[-113.7268,35.3785],[-113.7282,35.3797],[-113.7309,35.3817],[-113.732,35.3828],[-113.7346,35.3859],[-113.736,35.3869],[-113.7394,35.389],[-113.7712,35.4072],[-113.7753,35.4096],[-113.7789,35.4111],[-113.7838,35.4128],[-113.7893,35.415],[-113.7944,35.4169],[-113.8009,35.4185],[-113.804,35.4187],[-113.809,35.4186],[-113.8128,35.4178],[-113.8177,35.4163],[-113.8234,35.4124],[-113.8601,35.3746],[-113.903,35.3297],[-113.945,35.286],[-113.988,35.241],[-114,35.2284],[-114,35.2284],[-114.0007,35.2277],[-114.0107,35.2173],[-114.016,35.2114],[-114.0232,35.203],[-114.0244,35.2016],[-114.0253,35.2005],[-114.0269,35.1988],[-114.0293,35.1967],[-114.0331,35.1939],[-114.034,35.193],[-114.0345,35.1916],[-114.0359,35.1897],[-114.0375,35.1884],[-114.0394,35.1871],[-114.0415,35.1864],[-114.0444,35.187],[-114.0491,35.1881],[-114.0542,35.1887],[-114.0572,35.189],[-114.0596,35.1898],[-114.061,35.1896],[-114.0626,35.1885],[-114.0629,35.1874],[-114.063,35.1857],[-114.063,35.1846],[-114.0636,35.1825],[-114.064,35.1795],[-114.0642,35.1766],[-114.064,35.1752],[-114.0632,35.1738],[-114.0618,35.1722],[-114.0609,35.171],[-114.0605,35.1696],[-114.0609,35.1675],[-114.0622,35.1657],[-114.0643,35.1644],[-114.0688,35.1631],[-114.0722,35.1622],[-114.0776,35.1603],[-114.0813,35.1586],[-114.0854,35.1561],[-114.088,35.1543],[-114.0907,35.1517],[-114.0943,35.1474],[-114.0951,35.1459],[-114.096,35.145],[-114.0968,35.1438],[-114.1097,35.1378],[-114.1256,35.1279],[-114.1352,35.122],[-114.1364,35.1208],[-114.1382,35.1188],[-114.1426,35.1155],[-114.1468,35.1119],[-114.1516,35.1079],[-114.1554,35.1052],[-114.1631,35.1013],[-114.1651,35.1001],[-114.1681,35.0977],[-114.1718,35.0952],[-114.1816,35.0899],[-114.1846,35.0897],[-114.1987,35.0809],[-114.2,35.0799],[-114.2451,35.052],[-114.2488,35.0499],[-114.2503,35.0479],[-114.252,35.0453],[-114.2531,35.0441],[-114.2669,35.0367],[-114.2759,35.0319],[-114.2766,35.0308],[-114.278,35.0285],[-114.2791,35.0272],[-114.2962,35.0256],[-114.3034,35.0252],[-114.3086,35.0271],[-114.3099,35.0274],[-114.3111,35.0283],[-114.3125,35.0287],[-114.3163,35.0299],[-114.3179,35.0304],[-114.3195,35.0306],[-114.3203,35.0313],[-114.3214,35.0321],[-114.3228,35.0319],[-114.3241,35.0329],[-114.3254,35.0331],[-114.3265,35.0339],[-114.3278,35.035],[-114.3288,35.0356],[-114.3303,35.0359],[-114.3313,35.0363],[-114.333,35.0365],[-114.3344,35.036],[-114.3354,35.0365],[-114.3369,35.0375],[-114.3384,35.0378],[-114.3397,35.0374],[-114.3412,35.0372],[-114.3425,35.0374],[-114.3437,35.0378],[-114.3446,35.0372],[-114.3458,35.037],[-114.3468,35.0378],[-114.3478,35.0383],[-114.3488,35.0378],[-114.3502,35.0381],[-114.3514,35.0381],[-114.3528,35.0377],[-114.3534,35.0386],[-114.3545,35.0387],[-114.3557,35.0384],[-114.356,35.0394],[-114.3567,35.041],[-114.3562,35.0418],[-114.3571,35.0428],[-114.3586,35.043],[-114.3594,35.044],[-114.3604,35.0449],[-114.3609,35.0464],[-114.3626,35.0466],[-114.3637,35.0458],[-114.3647,35.0452],[-114.3658,35.0445],[-114.3676,35.0444],[-114.3682,35.0434],[-114.3692,35.0428],[-114.3705,35.042],[-114.3713,35.0414],[-114.3725,35.0407],[-114.3742,35.041],[-114.3756,35.0424],[-114.375,35.0432],[-114.376,35.044],[-114.3765,35.0449],[-114.3777,35.0453],[-114.379,35.0459],[-114.3797,35.0452],[-114.3816,35.0457],[-114.3828,35.0464],[-114.3839,35.0458],[-114.3841,35.0449],[-114.3847,35.044],[-114.3858,35.0444],[-114.387,35.0439],[-114.3881,35.0432],[-114.3888,35.0423],[-114.3898,35.043],[-114.3906,35.0436],[-114.3919,35.0439],[-114.3918,35.0425],[-114.3916,35.0416],[-114.3923,35.0403],[-114.3928,35.0385],[-114.3931,35.0375],[-114.3935,35.0364],[-114.3926,35.0351],[-114.3922,35.0342],[-114.3913,35.0334],[-114.3904,35.0325],[-114.3893,35.0319],[-114.3884,35.0313],[-114.3876,35.0298],[-114.3863,35.0291],[-114.3855,35.0283],[-114.385,35.0271],[-114.384,35.0267],[-114.3825,35.0249],[-114.3826,35.0231],[-114.3826,35.0219],[-114.3832,35.0208],[-114.384,35.0196],[-114.3847,35.0184],[-114.3856,35.017],[-114.3865,35.0161],[-114.3872,35.0149],[-114.3877,35.0137],[-114.3885,35.0127],[-114.3898,35.0114],[-114.3906,35.0105],[-114.3912,35.0093],[-114.3919,35.0082],[-114.3933,35.0077],[-114.394,35.0069],[-114.3949,35.0057],[-114.3964,35.0052],[-114.3983,35.0048],[-114.4,35.0038],[-114.4015,35.0032],[-114.4034,35.0024],[-114.4053,35.0012],[-114.4071,35],[-114.4071,35],[-114.4092,34.9987],[-114.4109,34.9982],[-114.4115,34.9972],[-114.413,34.9957],[-114.4146,34.9942],[-114.4163,34.9922],[-114.4177,34.9907],[-114.4192,34.9892],[-114.4238,34.9872],[-114.4251,34.9852],[-114.4242,34.9833],[-114.424,34.9821],[-114.4233,34.9802],[-114.4212,34.9786],[-114.4194,34.9772],[-114.4184,34.975],[-114.4176,34.9734],[-114.4164,34.9736],[-114.4152,34.9733],[-114.415,34.9716],[-114.4151,34.9702],[-114.4142,34.9691],[-114.4128,34.9672],[-114.4119,34.966],[-114.4113,34.9649],[-114.4097,34.9637],[-114.4089,34.9628],[-114.4084,34.9616],[-114.4089,34.9602],[-114.4095,34.9594],[-114.4097,34.958],[-114.4095,34.9566],[-114.41,34.9557],[-114.4101,34.9537],[-114.4114,34.9524],[-114.4129,34.9507],[-114.4141,34.9488],[-114.4153,34.9461],[-114.4163,34.9448],[-114.417,34.9438],[-114.4192,34.9395],[-114.4226,34.9324],[-114.4237,34.931],[-114.4234,34.9299],[-114.4239,34.9278],[-114.4242,34.9268],[-114.4251,34.9236],[-114.4253,34.922],[-114.4253,34.9204],[-114.4254,34.9193],[-114.4259,34.9185],[-114.4259,34.9175],[-114.4261,34.9161],[-114.4266,34.9137],[-114.4302,34.9052],[-114.4292,34.9044],[-114.4276,34.9025],[-114.4282,34.8997],[-114.4289,34.899],[-114.43,34.8977],[-114.431,34.8962],[-114.4317,34.8949],[-114.4325,34.8923],[-114.4323,34.891],[-114.4332,34.89],[-114.4336,34.8882],[-114.4354,34.8806],[-114.4368,34.8757],[-114.4382,34.8734],[-114.4439,34.862],[-114.4457,34.858],[-114.4479,34.8573],[-114.4493,34.8546],[-114.4512,34.8517],[-114.4529,34.8493],[-114.4558,34.8436],[-114.457,34.8419],[-114.4644,34.8328],[-114.4647,34.8314],[-114.4653,34.8305],[-114.4664,34.8297],[-114.4666,34.8289],[-114.4665,34.8278],[-114.4667,34.8247],[-114.4668,34.8225],[-114.4673,34.8199],[-114.468,34.8175],[-114.4694,34.8129],[-114.4704,34.8116],[-114.4709,34.8097],[-114.4709,34.8076],[-114.4709,34.8059],[-114.4706,34.805],[-114.4701,34.8032],[-114.4699,34.8017],[-114.4704,34.8003],[-114.4712,34.7984],[-114.4722,34.7974],[-114.4733,34.797],[-114.4744,34.7969],[-114.4757,34.797],[-114.4777,34.797],[-114.4789,34.7964],[-114.4802,34.7952],[-114.4808,34.7937],[-114.4808,34.7916],[-114.4814,34.7826],[-114.4809,34.7804],[-114.4803,34.7777],[-114.4789,34.771],[-114.4777,34.7661],[-114.4778,34.7646],[-114.4787,34.758],[-114.4806,34.7518],[-114.4826,34.7465],[-114.4834,34.7451],[-114.4847,34.7424],[-114.4841,34.7413],[-114.4836,34.7398],[-114.4826,34.7387],[-114.4821,34.7377],[-114.4814,34.7352],[-114.4808,34.7343],[-114.479,34.7334],[-114.4777,34.7326],[-114.4771,34.7315],[-114.4775,34.7284],[-114.4781,34.7231],[-114.4784,34.7216],[-114.4797,34.7197],[-114.4804,34.719],[-114.4817,34.7187],[-114.4833,34.7188],[-114.4841,34.7178],[-114.4851,34.7174],[-114.4879,34.7172],[-114.4916,34.717]],[[-114.5763,34.7617],[-114.5719,34.7633],[-114.5722,34.762],[-114.5718,34.7606],[-114.5737,34.761],[-114.5732,34.7586],[-114.5698,34.754],[-114.5606,34.7417],[-114.5579,34.7343],[-114.5568,34.731],[-114.5547,34.7249],[-114.5531,34.7207],[-114.5524,34.7195],[-114.551,34.7186],[-114.5491,34.7182],[-114.5466,34.7177],[-114.5436,34.7171],[-114.542,34.7169],[-114.5401,34.7172],[-114.5392,34.7177],[-114.5382,34.7181],[-114.5368,34.7182],[-114.5329,34.7184],[-114.5308,34.7189],[-114.5285,34.7194],[-114.5254,34.7173],[-114.5218,34.7171],[-114.5134,34.7175],[-114.5104,34.7185],[-114.5048,34.7177],[-114.4997,34.7179],[-114.4973,34.7177],[-114.4952,34.7174],[-114.4937,34.7171],[-114.4916,34.717],[-114.4912,34.7199],[-114.4922,34.7223],[-114.4929,34.7235],[-114.4941,34.7254],[-114.4957,34.7262],[-114.4982,34.7268],[-114.5013,34.7268],[-114.5044,34.7267],[-114.507,34.7267],[-114.5082,34.7265],[-114.5106,34.7257]],[[-114.5737,34.761],[-114.5763,34.7617],[-114.578,34.7607],[-114.5822,34.7597],[-114.584,34.7595],[-114.5947,34.769],[-114.5959,34.7703],[-114.5991,34.776],[-114.6024,34.7818],[-114.606,34.788],[-114.6087,34.7925],[-114.6089,34.7938],[-114.6089,34.7947],[-114.6062,34.8036],[-114.6056,34.8047],[-114.6016,34.8094],[-114.6001,34.8111],[-114.6003,34.8131],[-114.6013,34.8147],[-114.6015,34.8165],[-114.6006,34.8185],[-114.5986,34.8214],[-114.597,34.8241],[-114.5962,34.8258],[-114.5952,34.8285],[-114.5952,34.8302],[-114.595,34.8315],[-114.5949,34.8326],[-114.5989,34.8364],[-114.6001,34.8366],[-114.6032,34.8379],[-114.6078,34.8402],[-114.6119,34.8422],[-114.6126,34.8433],[-114.6139,34.8462],[-114.614,34.8486],[-114.6214,34.8485],[-114.6222,34.8491],[-114.6228,34.8503],[-114.6244,34.8514],[-114.6257,34.852],[-114.6266,34.854],[-114.6267,34.8559],[-114.6267,34.8569],[-114.6288,34.8602],[-114.6306,34.8634],[-114.632,34.8645],[-114.6351,34.8663],[-114.6362,34.8668],[-114.6373,34.8673],[-114.6387,34.8681],[-114.6417,34.8683],[-114.6441,34.8684],[-114.6463,34.8699],[-114.649,34.8715],[-114.6494,34.8733],[-114.6508,34.8727],[-114.6526,34.8723],[-114.6546,34.8731],[-114.6576,34.875],[-114.6658,34.8804],[-114.6722,34.8836],[-114.6961,34.8914],[-114.698,34.8917],[-114.7012,34.8915],[-114.7039,34.8909],[-114.7102,34.8889],[-114.7175,34.8866],[-114.7253,34.8848],[-114.7513,34.879],[-114.7545,34.8791],[-114.7559,34.8805],[-114.7572,34.8842],[-114.7584,34.8869],[-114.7589,34.8894],[-114.7595,34.8907],[-114.7618,34.8925],[-114.7637,34.8942],[-114.7651,34.8954],[-114.7659,34.8971],[-114.7673,34.9],[-114.7677,34.9018],[-114.7681,34.9089],[-114.769,34.9143],[-114.773,34.9206],[-114.779,34.9276],[-114.7834,34.9324],[-114.7927,34.94],[-114.799,34.9454],[-114.8009,34.95],[-114.8022,34.9546],[-114.8055,34.9551],[-114.8091,34.9528],[-114.8157,34.9475],[-114.8214,34.9439],[-114.8318,34.9417],[-114.8536,34.937],[-114.8601,34.9371],[-114.874,34.9356],[-114.8778,34.9339],[-114.8823,34.9326],[-114.8873,34.9324],[-114.8914,34.9318],[-114.8976,34.9298],[-114.9013,34.9277],[-114.9274,34.9193],[-114.9301,34.919],[-114.9391,34.9187],[-114.9527,34.9181],[-114.9659,34.9178],[-114.9805,34.9187],[-115,34.9196],[-115.0009,34.9196],[-115.0142,34.92],[-115.0277,34.9207],[-115.0448,34.9215],[-115.0523,34.9218],[-115.0589,34.9207],[-115.0659,34.9186],[-115.0752,34.9135],[-115.0817,34.9084],[-115.089,34.9017],[-115.0923,34.8984],[-115.0946,34.8945],[-115.0978,34.8888],[-115.1009,34.8845],[-115.1057,34.8794],[-115.1095,34.8753],[-115.1134,34.8703],[-115.1144,34.8691],[-115.117,34.8654],[-115.1198,34.8628],[-115.1264,34.8563],[-115.1319,34.8513],[-115.136,34.8483],[-115.142,34.8441],[-115.1717,34.8233],[-115.1748,34.8208],[-115.177,34.8199],[-115.1781,34.8187],[-115.1819,34.8181],[-115.1871,34.8171],[-115.1895,34.8148],[-115.1903,34.8123],[-115.1909,34.8088],[-115.1916,34.8057],[-115.1927,34.8038],[-115.1952,34.8011],[-115.1967,34.7985],[-115.1997,34.7935],[-115.2026,34.7886],[-115.2139,34.7682],[-115.2205,34.7543],[-115.2278,34.7519],[-115.2293,34.7504],[-115.2344,34.7463],[-115.2407,34.7398],[-115.2461,34.7345],[-115.2503,34.7309],[-115.256,34.7291],[-115.26,34.7272],[-115.2684,34.7215],[-115.3311,34.6771],[-115.3706,34.6488],[-115.3891,34.6354],[-115.4198,34.6137],[-115.4689,34.5788],[-115.4744,34.5748],[-115.4767,34.5734],[-115.4797,34.5719],[-115.4842,34.57],[-115.4872,34.5687],[-115.4926,34.566],[-115.4959,34.564],[-115.4989,34.563],[-115.5013,34.5627],[-115.5614,34.5618],[-115.5882,34.5611],[-115.6546,34.5599],[-115.6986,34.5591],[-115.7252,34.5587],[-115.7412,34.5582],[-115.749,34.5582],[-115.7505,34.5571],[-115.7522,34.5557],[-115.7535,34.5549],[-115.7567,34.5555],[-115.7709,34.5593],[-115.783,34.5626],[-115.7961,34.5664],[-115.8115,34.5691],[-115.8361,34.5742],[-115.8568,34.5788],[-115.8771,34.583],[-115.8966,34.5875],[-115.9054,34.5897],[-115.9204,34.5932],[-115.9258,34.5944],[-115.9333,34.5966],[-115.9409,34.5987],[-115.9525,34.602],[-115.9575,34.6033],[-115.9594,34.6041],[-115.9625,34.6059],[-115.9682,34.6096],[-115.9787,34.6171],[-116,34.6319],[-116.0004,34.6322],[-116.0037,34.6344],[-116.0066,34.6365],[-116.0079,34.6383],[-116.01,34.6428],[-116.0174,34.66],[-116.0181,34.6627],[-116.018,34.6648],[-116.0178,34.6669],[-116.0178,34.6688],[-116.0182,34.6697],[-116.0198,34.6721],[-116.0229,34.6766],[-116.0263,34.6811],[-116.0293,34.6833],[-116.0412,34.689],[-116.0579,34.6972],[-116.0687,34.7021],[-116.075,34.7046],[-116.1184,34.7209],[-116.1206,34.7224],[-116.1218,34.7237],[-116.1237,34.7246],[-116.1251,34.725],[-116.1287,34.725],[-116.1507,34.724],[-116.1521,34.7239],[-116.1544,34.7236],[-116.1556,34.7233],[-116.1578,34.7226],[-116.1596,34.7217],[-116.1613,34.7208],[-116.1627,34.7219],[-116.1625,34.7229],[-116.1629,34.7238],[-116.1693,34.7237],[-116.1761,34.7234],[-116.189,34.7241],[-116.2151,34.7257],[-116.2585,34.728],[-116.2629,34.7282],[-116.266,34.7287],[-116.2731,34.7302],[-116.3053,34.7376],[-116.3123,34.7393],[-116.3161,34.7403],[-116.3179,34.7411],[-116.3253,34.7448],[-116.3278,34.7462],[-116.3297,34.7471],[-116.3324,34.7484],[-116.334,34.7494],[-116.3365,34.7504],[-116.3382,34.7515],[-116.3401,34.752],[-116.3416,34.7523],[-116.343,34.7522],[-116.3445,34.7519],[-116.3461,34.7522],[-116.3472,34.7527],[-116.3579,34.7607],[-116.3605,34.7629],[-116.3699,34.7699],[-116.3757,34.7729],[-116.3802,34.7748],[-116.3832,34.7756],[-116.3884,34.7767],[-116.4184,34.7843],[-116.4292,34.7853],[-116.4482,34.7865],[-116.4618,34.7877],[-116.4705,34.7884],[-116.475,34.7889],[-116.4788,34.7897],[-116.484,34.7911],[-116.494,34.794],[-116.5121,34.7993],[-116.5228,34.8008],[-116.5404,34.8041],[-116.5593,34.8076],[-116.5792,34.811],[-116.5908,34.813],[-116.6044,34.8154],[-116.6096,34.8162],[-116.6126,34.8172],[-116.6148,34.8176],[-116.6678,34.8271],[-116.6767,34.8284],[-116.6884,34.8298],[-116.6913,34.83],[-116.6931,34.8304],[-116.6945,34.8306],[-116.6963,34.8305],[-116.6995,34.8306],[-116.7037,34.8309],[-116.7127,34.8317],[-116.7374,34.8338],[-116.75,34.8349],[-116.7698,34.8372],[-116.807,34.8419],[-116.8398,34.8461],[-116.8517,34.8475],[-116.8567,34.8482],[-116.8894,34.8551],[-116.9144,34.86],[-116.9336,34.8641],[-116.9468,34.8668],[-116.9543,34.8687],[-116.9592,34.8712],[-116.967,34.878],[-116.9708,34.8803],[-116.9771,34.8824],[-116.9922,34.8866],[-116.9968,34.8899],[-116.9987,34.8905],[-117,34.8914],[-117.0013,34.8922],[-117.0075,34.8964],[-117.0097,34.8978],[-117.012,34.8985],[-117.0144,34.8985],[-117.0183,34.8986],[-117.0288,34.8987],[-117.0299,34.8985],[-117.0334,34.8978],[-117.0491,34.8935],[-117.0758,34.8869],[-117.0945,34.8821],[-117.1004,34.8808],[-117.1107,34.8767],[-117.1164,34.8735],[-117.1193,34.8716],[-117.1357,34.8592],[-117.158,34.8429],[-117.1672,34.8365],[-117.1727,34.8344],[-117.1761,34.8327],[-117.1823,34.829],[-117.1846,34.8274],[-117.1887,34.8206],[-117.1905,34.8183],[-117.1991,34.811],[-117.2045,34.8065],[-117.2082,34.8033],[-117.2131,34.8008],[-117.2204,34.7985],[-117.2281,34.7954],[-117.2448,34.788],[-117.2498,34.7854],[-117.2551,34.783],[-117.2634,34.7773],[-117.2686,34.7725],[-117.2952,34.75],[-117.2999,34.7489],[-117.3034,34.7481],[-117.3049,34.7479],[-117.3073,34.7487],[-117.3099,34.7498],[-117.3116,34.7504],[-117.3142,34.7504],[-117.3159,34.7499],[-117.3191,34.7485],[-117.321,34.7473],[-117.322,34.7453],[-117.3232,34.74],[-117.3246,34.7366],[-117.3265,34.7323],[-117.3296,34.7243],[-117.3392,34.6963],[-117.3392,34.6902],[-117.3392,34.6794],[-117.3392,34.6768],[-117.3413,34.6628],[-117.3417,34.66],[-117.3429,34.6474],[-117.3455,34.6391],[-117.3458,34.6373],[-117.3452,34.6341],[-117.3451,34.6316],[-117.3443,34.6299],[-117.3439,34.6286],[-117.3442,34.6255],[-117.3443,34.624],[-117.344,34.6207],[-117.3429,34.6162],[-117.3418,34.6125],[-117.3409,34.6103],[-117.341,34.6094],[-117.342,34.6084],[-117.3421,34.6075],[-117.3411,34.6054],[-117.3344,34.5958],[-117.3321,34.5925],[-117.3317,34.5899],[-117.3314,34.5865],[-117.3319,34.5851],[-117.3322,34.5841],[-117.332,34.5821],[-117.3308,34.5799],[-117.3284,34.5769],[-117.3238,34.5746],[-117.3224,34.574],[-117.3218,34.5726],[-117.3212,34.5714],[-117.3204,34.569],[-117.3199,34.5675],[-117.3186,34.5662],[-117.3162,34.5644],[-117.3144,34.5629],[-117.3132,34.5609],[-117.3114,34.5594],[-117.3095,34.5579],[-117.3076,34.5565],[-117.307,34.5556],[-117.3062,34.5546],[-117.3048,34.553],[-117.3038,34.5519],[-117.3024,34.549],[-117.3006,34.5454],[-117.2995,34.543],[-117.2988,34.5411],[-117.2982,34.5401],[-117.2929,34.536],[-117.2953,34.5341],[-117.2966,34.5333],[-117.298,34.5322],[-117.2993,34.5294],[-117.3016,34.5267],[-117.3039,34.5249],[-117.3073,34.5226],[-117.313,34.5166],[-117.3174,34.5124],[-117.3195,34.51],[-117.3206,34.5088],[-117.324,34.5038],[-117.3264,34.5],[-117.3275,34.4982],[-117.3371,34.4825],[-117.3452,34.4718],[-117.365,34.4463],[-117.382,34.4246],[-117.3955,34.4072],[-117.4013,34.3997],[-117.4051,34.3951],[-117.4187,34.3786],[-117.4307,34.365],[-117.4339,34.3615],[-117.436,34.359],[-117.438,34.3565]],[[-117.4825,34.3338],[-117.4806,34.3361],[-117.4788,34.3381],[-117.4767,34.3396],[-117.4739,34.3404],[-117.472,34.3403],[-117.4672,34.3401],[-117.4641,34.3402],[-117.4607,34.3403],[-117.457,34.3414],[-117.4483,34.344],[-117.4434,34.3464],[-117.4415,34.3476],[-117.4388,34.3523],[-117.438,34.3565],[-117.4406,34.3534],[-117.4441,34.3511],[-117.4473,34.3493],[-117.4494,34.347],[-117.4518,34.3454],[-117.4557,34.3446],[-117.4592,34.344],[-117.4632,34.3446],[-117.4666,34.3464],[-117.4705,34.3478],[-117.4754,34.3476],[-117.4787,34.3465],[-117.481,34.3437],[-117.4822,34.3416],[-117.4828,34.3374],[-117.4825,34.3338]],[[-117.4825,34.3338],[-117.4822,34.329],[-117.4822,34.3235],[-117.4806,34.3184],[-117.4781,34.3147],[-117.4757,34.3129],[-117.4703,34.3079],[-117.4673,34.3056],[-117.4637,34.3041],[-117.4619,34.3034],[-117.4611,34.3021],[-117.4593,34.3005],[-117.4588,34.2979],[-117.4582,34.296],[-117.4562,34.2939],[-117.4538,34.2923],[-117.4531,34.2913],[-117.4531,34.2864],[-117.4536,34.2826],[-117.4537,34.2814],[-117.4533,34.2784],[-117.4523,34.2759],[-117.4509,34.2738],[-117.4509,34.2718],[-117.4528,34.2693],[-117.4547,34.2683],[-117.4587,34.2667],[-117.4631,34.2659],[-117.4645,34.2653],[-117.4662,34.264],[-117.4673,34.2628],[-117.4678,34.2609],[-117.4673,34.2599],[-117.4652,34.2566],[-117.4627,34.2551],[-117.4437,34.2455],[-117.4326,34.2387],[-117.4234,34.233],[-117.4152,34.2285],[-117.4134,34.2279],[-117.4111,34.226],[-117.4075,34.224],[-117.4053,34.2224],[-117.388,34.2096],[-117.3756,34.1997],[-117.3152,34.1369],[-117.3046,34.1304]],[[-117.3019,34.1287],[-117.3046,34.1304],[-117.3028,34.1272],[-117.3028,34.1229],[-117.3029,34.115],[-117.303,34.1084],[-117.3245,34.1084],[-117.3278,34.1084],[-117.3301,34.1073],[-117.331,34.1066],[-117.3336,34.1066],[-117.3452,34.107],[-117.4451,34.1064],[-117.5314,34.1064],[-117.5617,34.1065],[-117.6151,34.1067],[-117.6167,34.1057],[-117.6187,34.1048],[-117.6207,34.1046],[-117.6235,34.1052],[-117.626,34.1059],[-117.6294,34.1068],[-117.6327,34.1072],[-117.6516,34.1072],[-117.7467,34.1072],[-117.7616,34.112],[-117.7824,34.1193],[-117.7905,34.1219],[-117.8331,34.1292],[-117.8789,34.1289],[-117.8904,34.1288],[-117.8926,34.1295],[-117.8955,34.132],[-117.8984,34.1338],[-117.934,34.1338],[-117.937,34.1336],[-117.9385,34.134],[-117.9413,34.136],[-117.9483,34.1397],[-117.9688,34.1397],[-117.9821,34.1395],[-117.9854,34.1396],[-117.9882,34.1399],[-117.9902,34.1406],[-118,34.1403],[-118.0009,34.1402],[-118.0342,34.1398],[-118.0377,34.1401],[-118.0437,34.1478],[-118.0559,34.1482],[-118.0673,34.1481],[-118.0706,34.1463],[-118.124,34.1459],[-118.1474,34.1458],[-118.1471,34.1272],[-118.1467,34.1253],[-118.1459,34.1236],[-118.1458,34.1224],[-118.1468,34.1203],[-118.148,34.1195],[-118.1506,34.1191],[-118.153,34.1192],[-118.158,34.1191],[-118.1603,34.1192],[-118.1624,34.1191],[-118.1642,34.1187],[-118.1678,34.118],[-118.1694,34.1175],[-118.1711,34.1163],[-118.1732,34.1146],[-118.1757,34.1134],[-118.1771,34.1128],[-118.1788,34.1117],[-118.1804,34.1112],[-118.1834,34.1115],[-118.1844,34.1109],[-118.1852,34.109],[-118.1856,34.1079],[-118.1897,34.1049],[-118.1921,34.103],[-118.1959,34.1029],[-118.1985,34.1024],[-118.2011,34.1013],[-118.2033,34.0983],[-118.2051,34.0957],[-118.2066,34.0939],[-118.2063,34.0924],[-118.2076,34.0904],[-118.2091,34.0884],[-118.2109,34.0869],[-118.2124,34.0863],[-118.2152,34.0861],[-118.2202,34.0844],[-118.2224,34.0826],[-118.2275,34.0792],[-118.2308,34.0767],[-118.2349,34.0724],[-118.2358,34.0707],[-118.2363,34.0694],[-118.2373,34.0678],[-118.2384,34.0673],[-118.2407,34.0664],[-118.2428,34.0655],[-118.2451,34.0649],[-118.2458,34.0636],[-118.2462,34.0625],[-118.2492,34.0652],[-118.2503,34.0685],[-118.2505,34.0713],[-118.2507,34.0727],[-118.2518,34.0745],[-118.2557,34.0762],[-118.2605,34.0783],[-118.2648,34.0776],[-118.266,34.078],[-118.2693,34.0798],[-118.271,34.0813],[-118.2731,34.0827],[-118.2744,34.0846],[-118.2754,34.087],[-118.2768,34.0893],[-118.2771,34.0902],[-118.279,34.091],[-118.2799,34.0921],[-118.2815,34.0924],[-118.2833,34.0912],[-118.3056,34.0908],[-118.3465,34.0907],[-118.3548,34.0908],[-118.3736,34.0908],[-118.3778,34.0888],[-118.3843,34.0848],[-118.3915,34.0798],[-118.4043,34.0713],[-118.434,34.0507],[-118.4438,34.0479],[-118.4465,34.0471],[-118.4526,34.0454],[-118.4571,34.0433],[-118.4624,34.0409],[-118.4671,34.0388],[-118.4872,34.0229],[-118.498,34.0141]]]}}]}]]>
                </wps:ComplexData>
            </wps:Data>
        </wps:Input>
        <wps:Input>
            <ows:Identifier>second feature collection</ows:Identifier>
            <wps:Data>
                <wps:ComplexData mimeType="application/json">
                    <![CDATA[{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.0716,37.511],[-88.0879,37.4763],[-88.3117,37.4429],[-88.3592,37.4093],[-88.4199,37.4203],[-88.4676,37.4008],[-88.5113,37.2969],[-88.5014,37.2578],[-88.4507,37.2057],[-88.4225,37.1569],[-88.4505,37.0987],[-88.4768,37.0721],[-88.4907,37.0682],[-88.5173,37.0648],[-88.5593,37.0728],[-88.6142,37.109],[-88.6884,37.1354],[-88.7391,37.1412],[-88.7465,37.1521],[-88.8633,37.2022],[-88.9325,37.2184],[-88.9932,37.22],[-89.065,37.1859],[-89.1168,37.1121],[-89.1463,37.0932],[-89.1695,37.0642],[-89.1743,37.0257],[-89.1502,36.9984],[-89.1299,36.9881],[-89.1935,36.9868],[-89.2101,37.029],[-89.2377,37.0417],[-89.2641,37.0871],[-89.2842,37.0912],[-89.3033,37.0854],[-89.3097,37.0609],[-89.2642,37.0277],[-89.262,37.0087],[-89.2828,36.9992],[-89.311,37.0097],[-89.3829,37.0492],[-89.38,37.0991],[-89.4238,37.1372],[-89.4405,37.1653],[-89.4682,37.2243],[-89.4653,37.2537],[-89.4896,37.256],[-89.5139,37.2764],[-89.5139,37.305],[-89.5006,37.3294],[-89.4687,37.3394],[-89.4357,37.3557],[-89.4276,37.411],[-89.4536,37.4532],[-89.4948,37.4917],[-89.525,37.572],[-89.5134,37.6159],[-89.5192,37.6504],[-89.5134,37.6798],[-89.5215,37.6948],[-89.5814,37.7061],[-89.6665,37.7455],[-89.6759,37.784],[-89.6911,37.8048],[-89.7284,37.841],[-89.8517,37.9051],[-89.861,37.9055],[-89.8668,37.8919],[-89.9006,37.8759],[-89.9379,37.878],[-89.9789,37.9119],[-89.9582,37.9636],[-90.0108,37.9693],[-90.0419,37.9932],[-90.1193,38.0323],[-90.1347,38.054],[-90.2075,38.0889],[-90.2541,38.1222],[-90.2896,38.1668],[-90.3367,38.1887],[-90.3648,38.2343],[-90.3693,38.3236],[-90.3587,38.3653],[-90.3396,38.3908],[-90.3018,38.4274],[-90.2658,38.5187],[-90.2612,38.5328],[-90.2409,38.5628],[-90.1837,38.6103],[-90.1836,38.6588],[-90.2022,38.7004],[-90.1966,38.724],[-90.1634,38.7731],[-90.1352,38.7855],[-90.1217,38.8005],[-90.1131,38.8305],[-90.1328,38.853],[-90.2439,38.9145],[-90.2789,38.9247],[-90.3197,38.9249],[-90.4131,38.9623],[-90.4698,38.9592],[-90.5304,38.8916],[-90.5703,38.8713],[-90.6272,38.8808],[-90.6689,38.9353],[-90.7061,39.0378],[-90.7076,39.0582],[-90.6904,39.0937],[-90.7167,39.1442],[-90.7182,39.1959],[-90.7323,39.2247],[-90.7381,39.2478],[-90.7793,39.2968],[-90.8505,39.3505],[-90.9479,39.4006],[-91.0363,39.4444],[-91.0644,39.474],[-91.0936,39.5289],[-91.1562,39.5526],[-91.2032,39.6],[-91.3177,39.6859],[-91.3671,39.7246],[-91.3734,39.7613],[-91.3817,39.8038],[-91.4492,39.863],[-91.451,39.8852],[-91.4341,39.9018],[-91.4304,39.9218],[-91.4472,39.9461],[-91.4873,40.0058],[-91.504,40.0667],[-91.5161,40.1345],[-91.5065,40.2005],[-91.4989,40.2514],[-91.4867,40.3096],[-91.4486,40.3719],[-91.4188,40.3869],[-91.3858,40.3924],[-91.3728,40.403],[-91.3854,40.4472],[-91.3748,40.5037],[-91.3821,40.5285],[-91.4129,40.548],[-91.4111,40.573],[-91.3756,40.6034],[-91.2621,40.6395],[-91.2149,40.6438],[-91.1625,40.6563],[-91.1292,40.6821],[-91.12,40.7054],[-91.0928,40.7615],[-91.0889,40.8337],[-91.0492,40.8796],[-90.9833,40.9239],[-90.9607,40.9505],[-90.9547,41.0704],[-90.9578,41.1044],[-90.9903,41.1444],[-91.0183,41.1658],[-91.0563,41.1763],[-91.1015,41.2315],[-91.1023,41.2678],[-91.0733,41.3349],[-91.0558,41.4014],[-91.0275,41.4235],[-91.0007,41.4311],[-90.9497,41.4212],[-90.8441,41.4446],[-90.7799,41.4498],[-90.7082,41.4501],[-90.6588,41.4623],[-90.6007,41.5096],[-90.5408,41.526],[-90.455,41.5275],[-90.435,41.5436],[-90.423,41.5673],[-90.3484,41.5868],[-90.3393,41.6028],[-90.3411,41.6491],[-90.326,41.7227],[-90.3049,41.7565],[-90.2553,41.7817],[-90.1958,41.8061],[-90.1545,41.9308],[-90.1427,41.984],[-90.1505,42.0334],[-90.1681,42.061],[-90.1666,42.1037],[-90.1761,42.1205],[-90.1916,42.1227],[-90.2309,42.1597],[-90.3236,42.1973],[-90.3677,42.2102],[-90.4072,42.2426],[-90.418,42.2639],[-90.4277,42.3406],[-90.4416,42.3601],[-90.491,42.3888],[-90.5636,42.4218],[-90.6058,42.4606],[-90.6483,42.4756],[-90.6518,42.4947],[-90.6383,42.5094],[-90.42,42.5084],[-89.9236,42.5041],[-89.8346,42.5035],[-89.4005,42.4975],[-89.3594,42.4979],[-88.9391,42.4909],[-88.765,42.4909],[-88.7065,42.4897],[-88.2979,42.492],[-88.1947,42.4896],[-87.7973,42.4891],[-87.8369,42.3142],[-87.7602,42.1565],[-87.6705,42.0598],[-87.6126,41.8473],[-87.5299,41.7236],[-87.5326,41.4697],[-87.5324,41.3013],[-87.5317,41.1738],[-87.532,41.0099],[-87.5327,40.7454],[-87.5372,40.4946],[-87.5357,40.4832],[-87.5353,40.1662],[-87.5358,39.8873],[-87.5356,39.6093],[-87.5386,39.4774],[-87.5402,39.3505],[-87.5977,39.3383],[-87.6252,39.3074],[-87.6106,39.2977],[-87.6158,39.2814],[-87.6069,39.2582],[-87.5846,39.2488],[-87.5886,39.2085],[-87.5942,39.1981],[-87.6079,39.1961],[-87.6443,39.1685],[-87.6703,39.1467],[-87.6595,39.1307],[-87.6623,39.1135],[-87.6317,39.1039],[-87.6309,39.089],[-87.612,39.0846],[-87.5853,39.0624],[-87.5817,38.9957],[-87.5919,38.9941],[-87.5479,38.9771],[-87.5335,38.9637],[-87.5302,38.9319],[-87.5392,38.9049],[-87.5591,38.8698],[-87.5505,38.8579],[-87.5079,38.7956],[-87.519,38.7767],[-87.508,38.7697],[-87.5083,38.7366],[-87.5439,38.686],[-87.5885,38.6722],[-87.6252,38.6428],[-87.6286,38.6229],[-87.6198,38.5992],[-87.6406,38.5932],[-87.6529,38.5739],[-87.6729,38.5474],[-87.6514,38.5154],[-87.6535,38.5004],[-87.6799,38.504],[-87.6928,38.4815],[-87.7561,38.4661],[-87.7587,38.4571],[-87.739,38.4455],[-87.7484,38.418],[-87.784,38.3781],[-87.8345,38.3525],[-87.8501,38.2861],[-87.863,38.2854],[-87.874,38.3168],[-87.8834,38.3156],[-87.8885,38.3007],[-87.9141,38.281],[-87.9137,38.3023],[-87.9259,38.3048],[-87.98,38.2411],[-87.986,38.2348],[-87.9779,38.2007],[-87.9323,38.1711],[-87.932,38.1575],[-87.9506,38.1369],[-87.9735,38.1318],[-88.0185,38.1033],[-88.0123,38.0923],[-87.9649,38.0967],[-87.9753,38.0733],[-88.0347,38.0541],[-88.0431,38.0451],[-88.0415,38.0383],[-88.0217,38.0335],[-88.0292,38.0082],[-88.0217,37.9751],[-88.0425,37.9563],[-88.0418,37.9345],[-88.0646,37.9298],[-88.0789,37.944],[-88.084,37.9237],[-88.0304,37.9176],[-88.0266,37.9058],[-88.0449,37.896],[-88.1001,37.9062],[-88.1015,37.8953],[-88.0757,37.8678],[-88.0342,37.8437],[-88.0421,37.8275],[-88.0893,37.8312],[-88.086,37.8176],[-88.0356,37.8057],[-88.0725,37.7354],[-88.1336,37.7007],[-88.1594,37.6607],[-88.1576,37.6285],[-88.1342,37.5836],[-88.0716,37.511]]]]}}]}]]>
                </wps:ComplexData>
            </wps:Data>
        </wps:Input>
        <wps:Input>
            <ows:Identifier>intersectionMode</ows:Identifier>
            <wps:Data>
                <wps:LiteralData>INTERSECTION</wps:LiteralData>
            </wps:Data>
        </wps:Input>
        <wps:Input>
            <ows:Identifier>percentagesEnabled</ows:Identifier>
            <wps:Data>
                <wps:LiteralData>false</wps:LiteralData>
            </wps:Data>
        </wps:Input>
        <wps:Input>
            <ows:Identifier>areasEnabled</ows:Identifier>
            <wps:Data>
                <wps:LiteralData>false</wps:LiteralData>
            </wps:Data>
        </wps:Input>
    </wps:DataInputs>
    <wps:ResponseForm>
        <wps:RawDataOutput mimeType="application/json">
            <ows:Identifier>result</ows:Identifier>
        </wps:RawDataOutput>
    </wps:ResponseForm>
</wps:Execute>'

@tdipisa will this need a JIRA?


all the rest is addressed or there is response in the comment

@tdipisa
Copy link
Member

tdipisa commented Aug 7, 2023

@tdipisa will this need a JIRA?

@MV88 I don't know. If missing yes. You have to check on GS JIRA for this and/or ask the GS team.

@MV88
Copy link
Contributor Author

MV88 commented Aug 8, 2023

@offtherailz to test intersection you can add this data attached to a postgis JNDI layer to the geoserver.

CREATE TABLE 
    global_polygons 
    ( 
        id SERIAL NOT NULL, 
        NAME CHARACTER VARYING(64), 
        the_geom geography, 
        PRIMARY KEY (id) 
    );

INSERT INTO global_polygons (id, name, the_geom) VALUES (1, 'test polygon', '0103000020E61000000100000005000000805FC9B96FAFF93F6427F84321024740805FC9B96FAFF93F5419470E8FCF4540D04562E3829B23405419470E8FCF4540D04562E3829B23406427F84321024740805FC9B96FAFF93F6427F84321024740');
INSERT INTO global_polygons (id, name, the_geom) VALUES (2, 'small polygon', '0103000020E6100000010000000500000080D36B9B5AFA2440948BFE78CE46464060A577E8C7AD1140948BFE78CE46464060A577E8C7AD1140802EC1510123464080D36B9B5AFA2440802EC1510123464080D36B9B5AFA2440948BFE78CE464640');

@MV88
Copy link
Contributor Author

MV88 commented Aug 8, 2023

@tdipisa the error reported above is targeting 2.21-SNAPSHOT of gs-stable which is a very old one as @aaime said to me in pvt.

consider that sending the same request against the gs-main works fine (2.24-SNAPSHOT)

I suggest to plan an update to our gs-stable if not yet planned

@tdipisa
Copy link
Member

tdipisa commented Aug 8, 2023

@tdipisa the error reported above is targeting 2.21-SNAPSHOT of gs-stable which is a very old one as @aaime said to me in pvt.

consider that sending the same request against the gs-main works fine (2.24-SNAPSHOT)

I suggest to plan an update to our gs-stable if not yet planned

@MV88 gs-stable follows regularly the GS release workflow, that means it will be updated to a new GS stable version as soon as it is available. In the meantime we can test with our gs-main.

@MV88 MV88 requested a review from offtherailz August 9, 2023 10:31
Copy link
Member

@offtherailz offtherailz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I noticed that using this layer
clevelandmetro:osm_extract_cleveland_optimized

from gs-stable, that contains > 60000 features, the tool becomes unusable. Maybe we should add a maxItems from the feature selector's request, or paginate it.

The rest looks ok.

@tdipisa
Copy link
Member

tdipisa commented Aug 10, 2023

from gs-stable, that contains > 60000 features, the tool becomes unusable. Maybe we should add a maxItems from the feature selector's request, or paginate it.

I agree @MV88, that's usually important to manage. The pagination is better.

@MV88
Copy link
Contributor Author

MV88 commented Aug 10, 2023

I noticed that using this layer clevelandmetro:osm_extract_cleveland_optimized

from gs-stable, that contains > 60000 features, the tool becomes unusable. Maybe we should add a maxItems from the feature selector's request, or paginate it.

The rest looks ok.

@tdipisa @offtherailz
Can be acceptable a solution like this?

consider that when i pick the feature clicking on map it must be part of the list,
and that simply adding it causes issues with pagination index size etc. so we sort of restrict list when selecting the issues from click on map, not if the tool is disabled.

additionally we repopulate the list if the user has cleared selection

demo.using.pagination.and.select.features.mp4

@MV88 MV88 requested a review from offtherailz August 11, 2023 10:21
@MV88 MV88 enabled auto-merge (squash) August 11, 2023 12:31
@MV88 MV88 merged commit 98e8b2d into geosolutions-it:master Aug 11, 2023
4 checks passed
@MV88
Copy link
Contributor Author

MV88 commented Aug 11, 2023

@ElenaGallo please test in DEV

@MV88 MV88 mentioned this pull request Sep 4, 2023
6 tasks
@ElenaGallo ElenaGallo added the BackportNeeded Commits provided for an issue need to be backported to the milestone's stable branch label Sep 20, 2023
@ElenaGallo
Copy link
Contributor

@MV88 please backport this to the stable branch. Thanks

@tdipisa tdipisa removed the BackportNeeded Commits provided for an issue need to be backported to the milestone's stable branch label Sep 26, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C265-ATOLCD-2023-DEV_MS_CNR New Feature used for new functionalities
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Geoprocessing Tools plugin
5 participants