{"info":{"_postman_id":"0bfc4117-ad92-465b-b3d3-56dc7be9c3fe","name":"Nextdoor Share API","description":"<html><head></head><body><h1 id=\"nextdoor-share-api\">Nextdoor Share API</h1>\n<h3 id=\"authenticationauthorization\">Authentication/Authorization</h3>\n<ol>\n<li><p>Redirect your user to <a href=\"https://\">https://www.nextdoor.com/v3/authorize/?scope=openid%20post:write%20post:read%20comment:write&amp;client_id={{client_id}}&amp;redirect_uri={{your_callback_url}}</a></p>\n<ol>\n<li><p><a href=\"https://\">scope:</a> openid post:write post:read comment:write profile:read agency.boundary:read shareapi.all:read shareapi.all:write</p>\n</li>\n<li><p>redirect_uri: The location where our server sends the user once it has been successfully authorized and granted an authorization code</p>\n</li>\n<li><p>client_id: Your client ID provided by Nextdoor</p>\n</li>\n</ol>\n</li>\n<li><p>Our server will redirect user back to <strong>{{your_callback_url}}?code={{authorization_code}}</strong></p>\n</li>\n<li><p>Your server should handle <strong>{{your_callback_url}}</strong> and look for the authorization code in the query parameter</p>\n<ol>\n<li>Config the Access-Control-Allow-Origin header to include nextdoor domain.</li>\n<li>This is a good reference explain OAuth authorization code flow: <a href=\"https://\">https://developer.okta.com/blog/2018/04/10/oauth-authorization-code-grant-type#redirect-back-to-the-application</a></li>\n</ol>\n</li>\n<li><p>Use the <strong>{{authorization_code}}</strong> to exchange for an <code>access_token</code> by</p>\n<ol>\n<li><code>https://auth.nextdoor.com/v2/token</code></li>\n</ol>\n</li>\n<li><p>Use the <code>access_token</code> to invoke other APIs.</p>\n</li>\n<li><p>Please refresh the <code>access_token</code> before it expires.</p>\n</li>\n</ol>\n<p>To authenticate the following APIs:<br>Put the <code>access_token</code> into <code>bearer</code> field (Authentication header)</p>\n<p>Reference:</p>\n<p>HTTP Code:<br>200: success<br>400: bad input parameter.<br>401: unauthorized<br>403: lack of scope<br>500: server error, please retry, and let us know if the issue persists.</p>\n<p>Canada Server: <a href=\"https://\">https://ca.nextdoor.com/</a></p>\n<p>US Server: <a href=\"https://\">https://nextdoor.com/</a></p>\n<p>Australia Server: <a href=\"https://\">https://au.nextdoor.com/</a></p>\n<p>Europe Server: <a href=\"https://\">https://nextdoor.co.uk/</a></p>\n<p>Release Note V1.3 on Aug.22.2023:</p>\n<p>New 'Get agency boundary' and 'Create agency post' API supports geo targeting</p>\n<p>Release Note V1.2 on Aug.16.2023:</p>\n<p>The view count of each post has been added into the Get posts API</p>\n<p>Release Note V1.1 on Aug.1.2023:</p>\n<p>New endpoints added.</p>\n<p>Release Note V1.0 on May.8.2023:</p>\n<p>Initial</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Nextdoor Share API","slug":"nextdoor-share-api"}],"owner":"11147684","collectionId":"0bfc4117-ad92-465b-b3d3-56dc7be9c3fe","publishedId":"2s93K1qKws","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2023-03-21T05:40:33.000Z"},"item":[{"name":"Exchange authorization code with access token","id":"62a154c9-1a31-4fc8-b0f9-86472ee90bb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{client_id}}"},{"key":"password","value":"{{client_secret}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"code","value":"VHkYw6t_QLaz79dpg9nsuQ==","type":"text"},{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"redirect_uri","value":"http://localhost:8888/wp-admin/tools.php?page=keyring&action=verify&service=nextdoor","type":"text"}]},"url":"https://auth.nextdoor.com/v2/token","description":"<p>After you get the authorize_code, please exchange it with access_token. Also, refresh the acces_token periodically.</p>\n<p>Username -&gt; client_id</p>\n<p>Password -&gt; client_secret</p>\n<p>After you receive the access_token, put it into the bearer token field of the share API.</p>\n<p><strong>Note</strong>: Please utilize the expires_in field in the response of v2/token. The lifetime in seconds of the access token. For example, the value \"3600\" denotes that the access token will expire in one hour from the time the response was generated. Make sure you refresh the token before it expires.</p>\n<p><strong>Reference</strong>:</p>\n<p>Client Credential Flow (2-legged OAuth): <a href=\"https://docs.microsoft.com/en-us/linkedin/shared/authentication/client-credentials-flow?context=linkedin/context#401-unauthorized\">https://docs.microsoft.com/en-us/linkedin/shared/authentication/client-credentials-flow?context=linkedin/context#401-unauthorized</a></p>\n<p>Token Refresh Handling: <a href=\"https://stackoverflow.com/questions/30826726/how-to-identify-if-the-oauth-token-has-expired/30826806\">https://stackoverflow.com/questions/30826726/how-to-identify-if-the-oauth-token-has-expired/30826806</a></p>\n","urlObject":{"protocol":"https","path":["v2","token"],"host":["auth","nextdoor","com"],"query":[],"variable":[]}},"response":[{"id":"0a5eca6a-6f1d-48c0-939f-d4300a5f7efb","name":"Get token sample","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Basic <b64encode(\"client_id:client_secret\")>","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"code","value":"samplecode","type":"text"},{"key":"client_id","value":"test-partner","type":"text"},{"key":"redirect_uri","value":"https://partner.com/callback","type":"text"}]},"url":"https://auth.nextdoor.com/v2/token"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"sample_access_token\",\n    \"token_type\": \"Bearer\",\n    \"id_token\": \"sample_id_token\",\n    \"expires_in\": 31536000\n}"}],"_postman_id":"62a154c9-1a31-4fc8-b0f9-86472ee90bb6"},{"name":"Exchange authorization code with access token LOCAL","id":"8e51fdf4-7086-48e6-99c5-97511d2e3aae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{client_id}}"},{"key":"password","value":"{{client_secret}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"code","value":"V4ScZoV-QuqaeHgXwrfCwg==","type":"text"},{"key":"client_id","value":"test","type":"text"},{"key":"redirect_uri","value":"http://localhost.com:8000/","type":"text"}]},"url":"http://localhost.com:8132/v2/token","description":"<p>After you get the authorize_code, please exchange it with access_token. Also, refresh the acces_token periodically.</p>\n<p>Username -&gt; client_id</p>\n<p>Password -&gt; client_secret</p>\n<p>After you receive the access_token, put it into the bearer token field of the share API.</p>\n<p><strong>Note</strong>: Please utilize the expires_in field in the response of v2/token. The lifetime in seconds of the access token. For example, the value \"3600\" denotes that the access token will expire in one hour from the time the response was generated. Make sure you refresh the token before it expires.</p>\n<p><strong>Reference</strong>:</p>\n<p>Client Credential Flow (2-legged OAuth): <a href=\"https://docs.microsoft.com/en-us/linkedin/shared/authentication/client-credentials-flow?context=linkedin/context#401-unauthorized\">https://docs.microsoft.com/en-us/linkedin/shared/authentication/client-credentials-flow?context=linkedin/context#401-unauthorized</a></p>\n<p>Token Refresh Handling: <a href=\"https://stackoverflow.com/questions/30826726/how-to-identify-if-the-oauth-token-has-expired/30826806\">https://stackoverflow.com/questions/30826726/how-to-identify-if-the-oauth-token-has-expired/30826806</a></p>\n","urlObject":{"protocol":"http","port":"8132","path":["v2","token"],"host":["localhost","com"],"query":[],"variable":[]}},"response":[{"id":"da64e272-0fda-40ae-8d37-2d02b195d26d","name":"Get token sample","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Basic <b64encode(\"client_id:client_secret\")>","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"code","value":"samplecode","type":"text"},{"key":"client_id","value":"test-partner","type":"text"},{"key":"redirect_uri","value":"https://partner.com/callback","type":"text"}]},"url":"https://auth.nextdoor.com/v2/token"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"sample_access_token\",\n    \"token_type\": \"Bearer\",\n    \"id_token\": \"sample_id_token\",\n    \"expires_in\": 31536000\n}"}],"_postman_id":"8e51fdf4-7086-48e6-99c5-97511d2e3aae"},{"name":"Refresh access token","id":"6c8caaf2-d2e2-4599-b32c-4fa239d09176","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{client_id}}"},{"key":"password","value":"{{client_secret}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{unexpired_access_token}}","type":"text"},{"key":"scope","value":"openid post:write","type":"text"}]},"url":"https://auth.nextdoor.com/v2/token","description":"<p>Username -&gt; client_id</p>\n<p>Password -&gt; client_secret</p>\n","urlObject":{"protocol":"https","path":["v2","token"],"host":["auth","nextdoor","com"],"query":[],"variable":[]}},"response":[{"id":"3c52cd7d-4ac0-4335-a974-4e34c72d107f","name":"Refresh sample","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Basic <b64encode(\"client_id:client_secret\")>","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"samplecode","type":"text"},{"key":"scope","value":"scope","type":"text"}]},"url":"https://auth.nextdoor.com/v2/token"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"sample_access_token\",\n    \"token_type\": \"Bearer\",\n    \"id_token\": \"sample_id_token\",\n    \"expires_in\": 31536000\n}"}],"_postman_id":"6c8caaf2-d2e2-4599-b32c-4fa239d09176"},{"name":"Refresh access token Local","id":"b7eacdfb-fedb-4d9b-bf2c-ecd3ae409cb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{client_id}}"},{"key":"password","value":"{{client_secret}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{access_token}}","type":"text"},{"key":"scope","value":"openid publish_api","type":"text"}]},"url":"http://localhost.com:8132/v2/token","description":"<p>Username -&gt; client_id</p>\n<p>Password -&gt; client_secret</p>\n","urlObject":{"protocol":"http","port":"8132","path":["v2","token"],"host":["localhost","com"],"query":[],"variable":[]}},"response":[{"id":"b070001d-4e2c-4c6d-8e1b-f61ccaf4ecc9","name":"Refresh sample","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Basic <b64encode(\"client_id:client_secret\")>","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"samplecode","type":"text"},{"key":"scope","value":"scope","type":"text"}]},"url":"https://auth.nextdoor.com/v2/token"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"sample_access_token\",\n    \"token_type\": \"Bearer\",\n    \"id_token\": \"sample_id_token\",\n    \"expires_in\": 31536000\n}"}],"_postman_id":"b7eacdfb-fedb-4d9b-bf2c-ecd3ae409cb7"},{"name":"Create agency post","id":"c0fb5a99-7738-4d27-8a1d-186c222855bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body 3\",\n    \"hashtag\": \"example\",\n    \"lat\": 37.478345,\n    \"lon\": -122.179572,\n    \"radius\": 0.01,\n    \"group_ids\": [1],\n    \"smartlink_url\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/","description":"<p>Create a agency post on Nextdoor. Data field description:</p>\n<p><code>body_text (string)</code>: <strong>[required]</strong> Text that will appear in post, Posts body text cannot be longer than 8,192 bytes/characters.</p>\n<p><code>hashtag (string)</code>: <em>[optional]</em> Hashtag that will appear in post. This field cannot contain spaces.</p>\n<p><code>media_attachments (array[string])</code>: <em>[optional]</em> Media links that will appear in post. Images and videos are the only supported formats. The strings must be valid media urls. You can attach a max of 10 media attachments and media order will persist in the post.</p>\n<p>The Max file size for photos is 10MB. The Max file size for videos is 500MB per video.<br />These are the supported file types below. We do auto resize images and videos to fit the newsfeed.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Images: ('.gif', '.jpe', '.jpg', '.jpeg', '.png', '.tif', '.tiff', '.webp')\nVideos: ('.mov', '.avi', '.mpg', '.mpeg', '.mp4', '.m4v')\n\n</code></pre><p><code>lat (float)</code>: <em>[optional]</em> Latitude</p>\n<p><code>lon (float)</code>: <em>[optional]</em> Longitude</p>\n<p><code>radius (float)</code>: <em>[optional]</em> Radius</p>\n<p><code>group_ids [(float)]</code>: <em>[optional]</em> List of group ids</p>\n<h3 id=\"agency-geo-targeting\">Agency Geo Targeting:</h3>\n<p>There are four modes:</p>\n<ol>\n<li>Entire service area<ol>\n<li>Defaullt mode if you don't supply lat/lon/radius/group_ids</li>\n<li>It will post to the default service area for the user (A user could be configured with a area that different from the 'Entire service area')</li>\n</ol>\n</li>\n<li>Custom Area<ol>\n<li>The post will target [group_ids] area, please use the 'Get agency boundary' API to get all possible choices</li>\n<li>It is possible that the user don't have permission to post to the specific area.</li>\n</ol>\n</li>\n<li>Custom Neighborhood<ol>\n<li>WIP</li>\n</ol>\n</li>\n<li>Lat/Lon/Radius<ol>\n<li>Nextdoor server will look at all neighborhood that fall into the circle (lat/lon/radius) and within the agency service area.</li>\n<li>This is the easiest way to go if you don't have the ability to ingest geo data from 'Get agency boundary'</li>\n</ol>\n</li>\n</ol>\n<p><code>smartlink_url (string)</code>: [optional] Smartlink url that will generate a clickable preview below the post. The string must be a valid url.</p>\n<p>Rules:</p>\n<ol>\n<li>All urls have to be publicly accessible</li>\n<li><code>body_text</code> is the only required field</li>\n</ol>\n","urlObject":{"protocol":"https","path":["external","api","partner","v1","post","create",""],"host":["nextdoor","com"],"query":[],"variable":[]}},"response":[{"id":"fd9b398a-cf46-4605-b48f-bbef1376f864","name":"Invalid custom group id","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"Test post\",\n    \"group_ids\": [123456]\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"67"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 22 Aug 2023 19:26:46 GMT"},{"key":"server","value":"istio-envoy"},{"key":"x-nextdoor-langpref","value":"en-us"},{"key":"cache-control","value":"no-store"},{"key":"pragma","value":"no-cache"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"content-security-policy","value":"frame-ancestors 'self'"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"x-content-type-options","value":"nosniff"},{"key":"referrer-policy","value":"strict-origin-when-cross-origin"},{"key":"vary","value":"Cookie"},{"key":"dd-trace-id","value":"3209782716111367756"},{"key":"context-id","value":"2fed1d71-6778-456e-8723-c0c51b9f3f3e"},{"key":"x-amzn-trace-id","value":"Root=1-64e50bf6-7221ad4b6a550a8157fdb832;ContextID=2fed1d71-6778-456e-8723-c0c51b9f3f3e"},{"key":"x-envoy-upstream-service-time","value":"148"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f18dd0c3095e2c73f72cff3122430cb8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SFO5-C1"},{"key":"X-Amz-Cf-Id","value":"0L3mC-Vd_TU-ygzrXm8GsVOt9i9QEZNZRWJZ5rkOpwQyIMCToCXxjA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"You don't have permission to post to group: {123456}\"\n}"},{"id":"a2615fd5-9e0b-4d40-b1fc-5da67b6fa4f7","name":"Successfully post to custom area","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"Test post\",\n    \"group_ids\": [62784526]\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 22 Aug 2023 19:27:14 GMT"},{"key":"server","value":"istio-envoy"},{"key":"vary","value":"Accept-Encoding,Cookie"},{"key":"x-nextdoor-langpref","value":"en-us"},{"key":"cache-control","value":"no-store"},{"key":"pragma","value":"no-cache"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"content-security-policy","value":"frame-ancestors 'self'"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"x-content-type-options","value":"nosniff"},{"key":"referrer-policy","value":"strict-origin-when-cross-origin"},{"key":"dd-trace-id","value":"238354779777836807"},{"key":"set-cookie","value":"WERC=1ced7576-da89-419a-892c-83cfeadcaab92308221692732433; Domain=.nextdoor.com; expires=Tue, 22 Aug 2023 19:57:14 GMT; Max-Age=1800; Path=/; SameSite=Lax; Secure"},{"key":"context-id","value":"237cdfe7-a78e-4479-bc5c-28a9e89db1f3"},{"key":"x-amzn-trace-id","value":"Root=1-64e50c11-213847c67765f53178f663d9;ContextID=237cdfe7-a78e-4479-bc5c-28a9e89db1f3"},{"key":"strict-transport-security","value":"max-age=0"},{"key":"content-encoding","value":"gzip"},{"key":"x-envoy-upstream-service-time","value":"1041"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f18dd0c3095e2c73f72cff3122430cb8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SFO5-C1"},{"key":"X-Amz-Cf-Id","value":"P9gDjt04dXfLhevxiG6IroZkdXMO_DILHWdvTSFmTJE5WXRyhcCkVQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"sharelink\": \"https://nextdoor.com/p/{post_share_id}/\n}"},{"id":"e2dcf7e1-2f66-41ea-9380-307a3f0c4d35","name":"Lat/Lon/Radius out side of agency service area","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"Test post\",\n    \"lat\": 37.478345,\n    \"lon\": -122.179572,\n    \"radius\": 1\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"65"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 22 Aug 2023 19:27:47 GMT"},{"key":"server","value":"istio-envoy"},{"key":"x-nextdoor-langpref","value":"en-us"},{"key":"cache-control","value":"no-store"},{"key":"pragma","value":"no-cache"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"content-security-policy","value":"frame-ancestors 'self'"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"x-content-type-options","value":"nosniff"},{"key":"referrer-policy","value":"strict-origin-when-cross-origin"},{"key":"vary","value":"Cookie"},{"key":"dd-trace-id","value":"5231911373431028870"},{"key":"context-id","value":"4cebf58a-a256-4ac1-ba24-f040d1be2fa7"},{"key":"x-amzn-trace-id","value":"Root=1-64e50c33-697415c66868d7b83330318b;ContextID=4cebf58a-a256-4ac1-ba24-f040d1be2fa7"},{"key":"x-envoy-upstream-service-time","value":"123"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f18dd0c3095e2c73f72cff3122430cb8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SFO5-C1"},{"key":"X-Amz-Cf-Id","value":"1Wa0gc1neXAqrqh1MorKDqXoWuxyO1hvFU9g2LW1CBj64GdRixJj3w=="}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"No neighborhood found for the given lat/lon/radius\"\n}"},{"id":"e69a724e-a94d-40c7-b5ac-5df80a4850ea","name":"Post to entire service area","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"Test post\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 22 Aug 2023 19:30:35 GMT"},{"key":"server","value":"istio-envoy"},{"key":"vary","value":"Accept-Encoding,Cookie"},{"key":"x-nextdoor-langpref","value":"en-us"},{"key":"cache-control","value":"no-store"},{"key":"pragma","value":"no-cache"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"content-security-policy","value":"frame-ancestors 'self'"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"x-content-type-options","value":"nosniff"},{"key":"referrer-policy","value":"strict-origin-when-cross-origin"},{"key":"dd-trace-id","value":"6424127085150925244"},{"key":"set-cookie","value":"WERC=1ced7576-da89-419a-892c-83cfeadcaab92308221692732634; Domain=.nextdoor.com; expires=Tue, 22 Aug 2023 20:00:35 GMT; Max-Age=1800; Path=/; SameSite=Lax; Secure"},{"key":"context-id","value":"be8f9637-aa50-4645-aea6-5db6346a6b17"},{"key":"x-amzn-trace-id","value":"Root=1-64e50cda-70e91f8e319a832e6d7ff790;ContextID=be8f9637-aa50-4645-aea6-5db6346a6b17"},{"key":"strict-transport-security","value":"max-age=0"},{"key":"content-encoding","value":"gzip"},{"key":"x-envoy-upstream-service-time","value":"1081"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f18dd0c3095e2c73f72cff3122430cb8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SFO5-C1"},{"key":"X-Amz-Cf-Id","value":"PaNhBttwNzox63UZTF80U6mPb7E6l4aT2p6aRHiUbRmOAR_OGbUSKw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"share_link\": \"https://nextdoor.com/p/LqSdcSWJxY8j/\"\n}"}],"_postman_id":"c0fb5a99-7738-4d27-8a1d-186c222855bb"},{"name":"Create post","id":"dc813de1-0238-4cdf-8708-ff7bcd3c8988","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example\",\n    \"lat\": 37.88849697199503,\n    \"lon\": -122.20632563637744,\n    \"smartlink_url\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/","description":"<p><em>Support geo targeting of agency post is coming soon</em></p>\n<p>Create a neighbor or agency post on Nextdoor. Data field description:</p>\n<p><code>body_text (string)</code>: <strong>[required]</strong> Text that will appear in post, Posts body text cannot be longer than 8,192 bytes/characters.</p>\n<p><code>hashtag (string)</code>: <em>[optional]</em> Hashtag that will appear in post. This field cannot contain spaces.</p>\n<p><code>media_attachments (array[string])</code>: <em>[optional]</em> Media links that will appear in post. Images and videos are the only supported formats. The strings must be valid media urls. You can attach a max of 10 media attachments and media order will persist in the post.</p>\n<p>The Max file size for photos is 10MB. The Max file size for videos is 500MB per video.<br />These are the supported file types below. We do auto resize images and videos to fit the newsfeed.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Images: ('.gif', '.jpe', '.jpg', '.jpeg', '.png', '.tif', '.tiff', '.webp')\nVideos: ('.mov', '.avi', '.mpg', '.mpeg', '.mp4', '.m4v')\n\n</code></pre><p><code>lat (float)</code>: <em>[optional]</em> Latitude to generate a geo location on the post</p>\n<p><code>lon (float)</code>: <em>[optional]</em> Longitude to generate a geo location on the post</p>\n<p><em>Note: You must supply both latitude and longitude to support location</em></p>\n<p><code>smartlink_url (string)</code>: [optional] Smartlink url that will generate a clickable preview below the post. The string must be a valid url.</p>\n<p>Rules:</p>\n<ol>\n<li>All urls have to be publicly accessible</li>\n<li><code>body_text</code> is the only required field</li>\n<li>Agency posts will default to the entire distribution area of the agency</li>\n</ol>\n<p>The share_link returned is in the format of <a href=\"https://nextdoor.com/p/%7Bpost_share_id%7D\">https://nextdoor.com/p/{post_share_id}</a> . The post_share_id can be used as an unique identifier for posts created.</p>\n","urlObject":{"protocol":"https","path":["external","api","partner","v1","post","create",""],"host":["nextdoor","com"],"query":[],"variable":[]}},"response":[{"id":"6f3fff01-8a95-4ca8-8d49-3012970bf09b","name":"Body only","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"test body\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"sharelink\": \"https://nextdoor.com/p/{post_share_id}/\n}"},{"id":"cedd205b-9964-4f58-bf5f-79811ae55b01","name":"All attachments","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example\",\n    \"lat\": 37.88849697199503,\n    \"lon\": -122.20632563637744,\n    \"smartlink_url\": \"example.com\",\n    \"media_attachments\": [\"example1.png, example2.png, example3.mp4, example4.mp4\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\"\n}"},{"id":"1201aadf-6c74-4c2c-95ae-fc94b2727bef","name":"[Error] No body text","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Body text was not passed in\"\n}"},{"id":"d7685d4a-af5f-4696-864c-17407882329f","name":"[Error] Invalid hashtag","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"hello world\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Hashtag cannot contain spaces\"\n}"},{"id":"ebb24985-ec10-473c-935f-08e594c0bb5e","name":"[Error] Invalid media","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"media_attachments\": [\"notreal.png\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Invalid media attachment was passed in\"\n}"},{"id":"4936cfaf-4669-48d1-a5b9-76525eb2af7c","name":"[Error] Exceed media limit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"media_attachments\": [\"1.mp4\", \"2.png\", \"3.mp4\", \"4.png\", \"5.mp4\", \"6.png\", \"7.mp4\", \"8.png\", \"9.png\", \"10.png\", \"11.png\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Exceeded maximum amount of media attachments\"\n}"},{"id":"4b3898de-423d-4b15-9175-d94d5d6f4187","name":"[Error] Invalid smartlink","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"smartlink_url\": \"notreal.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Could not scrape data for the given url\"\n}"}],"_postman_id":"dc813de1-0238-4cdf-8708-ff7bcd3c8988"},{"name":"Create post local","id":"494a5aa0-d0fa-44b9-a3e3-2a66911a5441","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example\",\n    \"lat\": 37.88849697199503,\n    \"lon\": -122.20632563637744,\n    \"smartlink_url\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost.com:8000/external/api/partner/v1/post/create/","description":"<p><em>Support geo targeting of agency post is coming soon</em></p>\n<p>Create a neighbor or agency post on Nextdoor. Data field description:</p>\n<p><code>body_text (string)</code>: <strong>[required]</strong> Text that will appear in post, Posts body text cannot be longer than 8,192 bytes/characters.</p>\n<p><code>hashtag (string)</code>: <em>[optional]</em> Hashtag that will appear in post. This field cannot contain spaces.</p>\n<p><code>media_attachments (array[string])</code>: <em>[optional]</em> Media links that will appear in post. Images and videos are the only supported formats. The strings must be valid media urls. You can attach a max of 10 media attachments and media order will persist in the post.</p>\n<p>The Max file size for photos is 10MB. The Max file size for videos is 500MB per video.<br />These are the supported file types below. We do auto resize images and videos to fit the newsfeed.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Images: ('.gif', '.jpe', '.jpg', '.jpeg', '.png', '.tif', '.tiff', '.webp')\nVideos: ('.mov', '.avi', '.mpg', '.mpeg', '.mp4', '.m4v')\n\n</code></pre><p><code>lat (float)</code>: <em>[optional]</em> Latitude to generate a geo location on the post</p>\n<p><code>lon (float)</code>: <em>[optional]</em> Longitude to generate a geo location on the post</p>\n<p><em>Note: You must supply both latitude and longitude to support location</em></p>\n<p><code>smartlink_url (string)</code>: [optional] Smartlink url that will generate a clickable preview below the post. The string must be a valid url.</p>\n<p>Rules:</p>\n<ol>\n<li>All urls have to be publicly accessible</li>\n<li><code>body_text</code> is the only required field</li>\n<li>Agency posts will default to the entire distribution area of the agency</li>\n</ol>\n<p>The share_link returned is in the format of <a href=\"https://nextdoor.com/p/%7Bpost_share_id%7D\">https://nextdoor.com/p/{post_share_id}</a> . The post_share_id can be used as an unique identifier for posts created.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["external","api","partner","v1","post","create",""],"host":["localhost","com"],"query":[],"variable":[]}},"response":[{"id":"b1b7156a-b702-454d-bb18-26614662a616","name":"Body only","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"test body\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"sharelink\": \"https://nextdoor.com/p/{post_share_id}/\n}"},{"id":"1934f4d1-d5a3-48e1-a3c3-51a47a356022","name":"All attachments","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example\",\n    \"lat\": 37.88849697199503,\n    \"lon\": -122.20632563637744,\n    \"smartlink_url\": \"example.com\",\n    \"media_attachments\": [\"example1.png, example2.png, example3.mp4, example4.mp4\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\"\n}"},{"id":"1551718a-d2f5-4bb4-b1c7-b14c45df6544","name":"[Error] No body text","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Body text was not passed in\"\n}"},{"id":"044e8ad9-2b12-4ac4-a00c-195fa4724a62","name":"[Error] Invalid hashtag","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"hello world\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Hashtag cannot contain spaces\"\n}"},{"id":"a8dc2292-1e81-4568-859b-7820ca285741","name":"[Error] Invalid media","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"media_attachments\": [\"notreal.png\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Invalid media attachment was passed in\"\n}"},{"id":"a78d12af-4c01-4306-a45b-8d066e5ec44b","name":"[Error] Exceed media limit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"media_attachments\": [\"1.mp4\", \"2.png\", \"3.mp4\", \"4.png\", \"5.mp4\", \"6.png\", \"7.mp4\", \"8.png\", \"9.png\", \"10.png\", \"11.png\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Exceeded maximum amount of media attachments\"\n}"},{"id":"5dd46d00-0d55-49ce-ad7e-6fa538e1033b","name":"[Error] Invalid smartlink","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"smartlink_url\": \"notreal.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Could not scrape data for the given url\"\n}"}],"_postman_id":"494a5aa0-d0fa-44b9-a3e3-2a66911a5441"},{"name":"Toggle comment local","id":"47f43991-3943-4933-9d53-e6cc589ae683","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"RJ3FSTCRBx6Z\",\n    \"comment_status\": true\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost.com:8000/external/api/partner/v1/post/toggle_commenting/","description":"<p><em>Support geo targeting of agency post is coming soon</em></p>\n<p>Create a neighbor or agency post on Nextdoor. Data field description:</p>\n<p><code>body_text (string)</code>: <strong>[required]</strong> Text that will appear in post, Posts body text cannot be longer than 8,192 bytes/characters.</p>\n<p><code>hashtag (string)</code>: <em>[optional]</em> Hashtag that will appear in post. This field cannot contain spaces.</p>\n<p><code>media_attachments (array[string])</code>: <em>[optional]</em> Media links that will appear in post. Images and videos are the only supported formats. The strings must be valid media urls. You can attach a max of 10 media attachments and media order will persist in the post.</p>\n<p>The Max file size for photos is 10MB. The Max file size for videos is 500MB per video.<br />These are the supported file types below. We do auto resize images and videos to fit the newsfeed.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Images: ('.gif', '.jpe', '.jpg', '.jpeg', '.png', '.tif', '.tiff', '.webp')\nVideos: ('.mov', '.avi', '.mpg', '.mpeg', '.mp4', '.m4v')\n\n</code></pre><p><code>lat (float)</code>: <em>[optional]</em> Latitude to generate a geo location on the post</p>\n<p><code>lon (float)</code>: <em>[optional]</em> Longitude to generate a geo location on the post</p>\n<p><em>Note: You must supply both latitude and longitude to support location</em></p>\n<p><code>smartlink_url (string)</code>: [optional] Smartlink url that will generate a clickable preview below the post. The string must be a valid url.</p>\n<p>Rules:</p>\n<ol>\n<li>All urls have to be publicly accessible</li>\n<li><code>body_text</code> is the only required field</li>\n<li>Agency posts will default to the entire distribution area of the agency</li>\n</ol>\n<p>The share_link returned is in the format of <a href=\"https://nextdoor.com/p/%7Bpost_share_id%7D\">https://nextdoor.com/p/{post_share_id}</a> . The post_share_id can be used as an unique identifier for posts created.</p>\n","urlObject":{"protocol":"http","port":"8000","path":["external","api","partner","v1","post","toggle_commenting",""],"host":["localhost","com"],"query":[],"variable":[]}},"response":[{"id":"541e5bab-73ec-4b0c-9814-e959be3f997c","name":"Body only","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"test body\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"sharelink\": \"https://nextdoor.com/p/{post_share_id}/\n}"},{"id":"0bc8158e-1979-40da-a5ee-a7cde71a2390","name":"All attachments","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example\",\n    \"lat\": 37.88849697199503,\n    \"lon\": -122.20632563637744,\n    \"smartlink_url\": \"example.com\",\n    \"media_attachments\": [\"example1.png, example2.png, example3.mp4, example4.mp4\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\"\n}"},{"id":"aa2ac25a-7a5a-4302-88cb-5ada5f9144f4","name":"[Error] No body text","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Body text was not passed in\"\n}"},{"id":"9354cf52-e4f4-4283-9004-ab6fd05acd4a","name":"[Error] Invalid hashtag","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"hello world\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Hashtag cannot contain spaces\"\n}"},{"id":"2957489e-c057-40ae-a31e-fc4250088d52","name":"[Error] Invalid media","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"media_attachments\": [\"notreal.png\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Invalid media attachment was passed in\"\n}"},{"id":"f0bee295-b6d3-4640-ab0f-becca9a17f4e","name":"[Error] Exceed media limit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"media_attachments\": [\"1.mp4\", \"2.png\", \"3.mp4\", \"4.png\", \"5.mp4\", \"6.png\", \"7.mp4\", \"8.png\", \"9.png\", \"10.png\", \"11.png\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Exceeded maximum amount of media attachments\"\n}"},{"id":"3bdfa5ef-1e80-446c-a269-30d3aed0abe9","name":"[Error] Invalid smartlink","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"smartlink_url\": \"notreal.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Could not scrape data for the given url\"\n}"}],"_postman_id":"47f43991-3943-4933-9d53-e6cc589ae683"},{"name":"Create For Sale & Free post","id":"2894b80f-4a6b-4415-9a01-54b3ff626ccf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example\",\n    \"fsf\": {\n        \"title\": \"example title\",\n        \"description\": \"example description\",\n        \"price\": \"100\",\n        \"category\": \"topic_123\",\n        \"image_attachments\": \"cover_photo_url\"\n    },\n   \"smartlink_url\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/fsf/","description":"<p>Create a For Sale &amp; Free listing on Nextdoor. Data field description:</p>\n<p><code>body_text (string)</code>: <em>[optional]</em> Text that will appear in post</p>\n<p><code>fsf (dict)</code>: <strong>[required]</strong> For Sale &amp; Free object</p>\n<ul>\n<li><code>title (string)</code>: <strong>[required]</strong> Title of the listing</li>\n<li><code>description (string)</code>: <strong>[required]</strong> Description of the listing</li>\n<li><code>price (string)</code>: <strong>[required]</strong> Price of the listing</li>\n<li><code>category (string)</code>: <strong>[required]</strong> Category of the listing</li>\n<li><code>image_attachments (array[string])</code>: <strong>[required]</strong> Images attached to the listing. The strings must be valid image urls.</li>\n</ul>\n<p><code>hashtag (string)</code>: <em>[optional]</em> Hashtag that will appear in post. This field cannot contain spaces.</p>\n<p><code>smartlink_url (string)</code>: <em>[optional] S</em>martlink url that will generate a clickable preview below the post. The string must be a valid url.</p>\n<p>Rules:</p>\n<ol>\n<li>All urls have to be publicly accessible</li>\n<li><code>fsf</code> is the only required field</li>\n<li>We currently only support USD</li>\n</ol>\n<p>The share_link returned is in the format of <a href=\"https://nextdoor.com/p/%7Bpost_share_id%7D\">https://nextdoor.com/p/{post_share_id}</a> . The post_share_id can be used as an unique identifier for posts created.</p>\n","urlObject":{"protocol":"https","path":["external","api","partner","v1","post","fsf",""],"host":["nextdoor","com"],"query":[],"variable":[]}},"response":[{"id":"47a02d8c-b01a-4646-8070-84392efd617b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example\",\n    \"fsf\": {\n        \"title\": \"example title\",\n        \"description\": \"example description\",\n        \"price\": \"100\",\n        \"category\": \"topic_123\",\n        \"image_attachments\": \"cover_photo_url\"\n    },\n   \"smartlink_url\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"sharelink\": \"https://nextdoor.com/p/{post_share_id}/\n}"}],"_postman_id":"2894b80f-4a6b-4415-9a01-54b3ff626ccf"},{"name":"Mark FSF sold","id":"5be919c2-5480-41a8-99d8-d33c6fd0e228","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example\",\n    \"fsf\": {\n        \"title\": \"example title\",\n        \"description\": \"example description\",\n        \"price\": \"100\",\n        \"category\": \"topic_123\",\n        \"image_attachments\": \"cover_photo_url\"\n    },\n   \"smartlink_url\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/fsf/","description":"<p>Create a For Sale &amp; Free listing on Nextdoor. Data field description:</p>\n<p><code>body_text (string)</code>: <em>[optional]</em> Text that will appear in post</p>\n<p><code>fsf (dict)</code>: <strong>[required]</strong> For Sale &amp; Free object</p>\n<ul>\n<li><code>title (string)</code>: <strong>[required]</strong> Title of the listing</li>\n<li><code>description (string)</code>: <strong>[required]</strong> Description of the listing</li>\n<li><code>price (string)</code>: <strong>[required]</strong> Price of the listing</li>\n<li><code>category (string)</code>: <strong>[required]</strong> Category of the listing</li>\n<li><code>image_attachments (array[string])</code>: <strong>[required]</strong> Images attached to the listing. The strings must be valid image urls.</li>\n</ul>\n<p><code>hashtag (string)</code>: <em>[optional]</em> Hashtag that will appear in post. This field cannot contain spaces.</p>\n<p><code>smartlink_url (string)</code>: <em>[optional] S</em>martlink url that will generate a clickable preview below the post. The string must be a valid url.</p>\n<p>Rules:</p>\n<ol>\n<li>All urls have to be publicly accessible</li>\n<li><code>fsf</code> is the only required field</li>\n<li>We currently only support USD</li>\n</ol>\n<p>The share_link returned is in the format of <a href=\"https://nextdoor.com/p/%7Bpost_share_id%7D\">https://nextdoor.com/p/{post_share_id}</a> . The post_share_id can be used as an unique identifier for posts created.</p>\n","urlObject":{"protocol":"https","path":["external","api","partner","v1","post","fsf",""],"host":["nextdoor","com"],"query":[],"variable":[]}},"response":[{"id":"8cd8484e-edcd-4c75-a561-d519ac49c09d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example\",\n    \"fsf\": {\n        \"title\": \"example title\",\n        \"description\": \"example description\",\n        \"price\": \"100\",\n        \"category\": \"topic_123\",\n        \"image_attachments\": \"cover_photo_url\"\n    },\n   \"smartlink_url\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"sharelink\": \"https://nextdoor.com/p/{post_share_id}/\n}"}],"_postman_id":"5be919c2-5480-41a8-99d8-d33c6fd0e228"},{"name":"Create Event post","id":"c62e4d8b-1768-4c90-8814-3cf280477bbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example\",\n    \"lat\": 37.88849697199503,\n    \"lon\": -122.20632563637744,\n    \"smartlink_url\": \"example.com\",\n    \"media_attachments\": [\"example1.png, example2.png, example3.mp4, example4.mp4\"],\n    \"event\": {\n        \"title\": \"example event title\",\n        \"description\": \"example event description\",\n        \"startTime\": \"2222-03-17T19:00:00.000Z\",\n        \"endTime\": \"2222-03-20T19:00:00.000Z\",\n        \"coverPhoto\": \"example.png\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/event/","description":"<p>Create an event post on Nextdoor. Data field description:</p>\n<p><code>body_text (string)</code>: <strong>[required]</strong> Text that will appear in post</p>\n<p><code>event (dict)</code>: <strong>[required]</strong> Event object</p>\n<ul>\n<li><code>title (string)</code>: <strong>[required]</strong> Title of the event</li>\n<li><code>description (string)</code>: <strong>[required]</strong> Description of the event</li>\n<li><code>startTime (unix timestamp)</code>: <strong>[required]</strong> Start time of the event</li>\n<li><code>endTime (unix timestamp)</code>: <em>[optional]</em> End time of the event</li>\n<li><code>coverPhoto (string)</code>: <em>[optional]</em> Cover photo attached to the event</li>\n<li><code>virtualEventLink string)</code>: <em>[optional]</em> Virtual link for the event</li>\n</ul>\n<p><code>hashtag (string)</code>: <em>[optional]</em> Hashtag that will appear in post. This field cannot contain spaces.</p>\n<p><code>media_attachments (array[string])</code>: <em>[optional]</em> Media links that will appear in post. Images and videos are the only supported formats. The strings must be valid media urls. You can attach a max of 10 media attachments and media order will persist in the post.</p>\n<p><code>lat (float)</code>: <em>[optional]</em> Latitude to generate a geo location on the post</p>\n<p><code>lon (float)</code>: <em>[optional]</em> Longitude to generate a geo location on the post</p>\n<p><em>Note: You must supply both latitude and longitude to support location</em></p>\n<p><code>smartlink_url (string)</code>: <em>[optional] S</em>martlink url that will generate a clickable preview below the post. The string must be a valid url.</p>\n<p>Rules:</p>\n<ol>\n<li>All urls have to be publicly accessible</li>\n<li><code>body_text</code> and <code>event</code> are the only required fields</li>\n</ol>\n<p>The share_link returned is in the format of <a href=\"https://nextdoor.com/p/%7Bpost_share_id%7D\">https://nextdoor.com/p/{post_share_id}</a> . The post_share_id can be used as an unique identifier for posts created.</p>\n","urlObject":{"protocol":"https","path":["external","api","partner","v1","post","event",""],"host":["nextdoor","com"],"query":[],"variable":[]}},"response":[{"id":"9db1dac9-0db0-4c30-aa14-b873cd0e64aa","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example\",\n    \"lat\": 37.88849697199503,\n    \"lon\": -122.20632563637744,\n    \"smartlink_url\": \"example.com\",\n    \"media_attachments\": [\"example1.png, example2.png, example3.mp4, example4.mp4\"],\n    \"event\": {\n        \"title\": \"example event title\",\n        \"description\": \"example event description\",\n        \"startTime\": \"2222-03-17T19:00:00.000Z\",\n        \"endTime\": \"2222-03-20T19:00:00.000Z\",\n        \"coverPhoto\": \"example.png\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"sharelink\": \"https://nextdoor.com/p/{post_share_id}/\n}"}],"_postman_id":"c62e4d8b-1768-4c90-8814-3cf280477bbd"},{"name":"Get posts","id":"e058f20e-6f0b-455d-a050-5ccb4f91a57e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"http://localhost.com:8000/external/api/partner/v1/post/","description":"<p>Get your most recent Nextdoor posts.</p>\n<p>Returns a list of your Nextdoor posts. Metadata returned includes</p>\n<p><code>body:</code> Body text of post.</p>\n<p><code>comments:</code> List of comments and replies to comments of post.</p>\n<p><code>embed_url:</code> Embed url of post.</p>\n<p><code>reactions:</code> Reactions of post.</p>\n<p><code>url:</code> Share url of post.</p>\n<p><code>media:</code> Media information for each attachment of post.</p>\n<p><code>posts_length:</code> Number of posts returned.</p>\n<p><code>view_count:</code> Count of post views by other member from day 0 (post created) to day 14.</p>\n<p>Reference:</p>\n<p>List of nextdoor reactions:</p>\n<p>[{'id': 0,</p>\n<p>'name': 'thank',</p>\n<p>'color': '#F56A14',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-thank.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-thank.svg'}</a>,</p>\n<p>{'id': 21,</p>\n<p>'name': 'thank_tulip',</p>\n<p>'color': '#F56A14',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/thank-tulip.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/thank-tulip.svg'}</a>,</p>\n<p>{'id': 1,</p>\n<p>'name': 'like',</p>\n<p>'color': '#05A331',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/like.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/like.svg'}</a>,</p>\n<p>{'id': 18,</p>\n<p>'name': 'like2',</p>\n<p>'color': '#ED353B',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-like.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-like.svg'}</a>,</p>\n<p>{'id': 20,</p>\n<p>'name': 'agree',</p>\n<p>'color': '#006142',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-agree-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-agree-v2.svg'}</a>,</p>\n<p>{'id': 23,</p>\n<p>'name': 'quebec_flag',</p>\n<p>'color': '#224190',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-quebec.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-quebec.svg'}</a>,</p>\n<p>{'id': 24,</p>\n<p>'name': 'canada_flag',</p>\n<p>'color': '#ed1c24',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-canada.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-canada.svg'}</a>,</p>\n<p>{'id': 6,</p>\n<p>'name': 'metoo',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/metoo.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/metoo.svg'}</a>,</p>\n<p>{'id': 7,</p>\n<p>'name': 'love',</p>\n<p>'color': '#EA5C93',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/love.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/love.svg'}</a>,</p>\n<p>{'id': 9,</p>\n<p>'name': 'important',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/important.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/important.svg'}</a>,</p>\n<p>{'id': 3,</p>\n<p>'name': 'shock',</p>\n<p>'color': '#C45008',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-wow-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-wow-v2.svg'}</a>,</p>\n<p>{'id': 4,</p>\n<p>'name': 'sad',</p>\n<p>'color': '#C45008',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-sad.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-sad.svg'}</a>,</p>\n<p>{'id': 25,</p>\n<p>'name': 'celebrate',</p>\n<p>'color': '#9B00CB',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-celebrate.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-celebrate.svg'}</a>,</p>\n<p>{'id': 5,</p>\n<p>'name': 'angry',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/angry.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/angry.svg'}</a>,</p>\n<p>{'id': 8,</p>\n<p>'name': 'concerned',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/concerned.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/concerned.svg'}</a>,</p>\n<p>{'id': 10,</p>\n<p>'name': 'upset',</p>\n<p>'color': '#E57373',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/upset.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/upset.svg'}</a>,</p>\n<p>{'id': 2,</p>\n<p>'name': 'funny',</p>\n<p>'color': '#C45008',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-haha-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-haha-v2.svg'}</a>,</p>\n<p>{'id': 17,</p>\n<p>'name': 'plusone',</p>\n<p>'color': '#01579B',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one.svg'}</a>,</p>\n<p>{'id': 19,</p>\n<p>'name': 'plusone2',</p>\n<p>'color': '#05A331',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one-v2.svg'}</a>,</p>\n<p>{'id': 22,</p>\n<p>'name': 'spooky',</p>\n<p>'color': '#FF9100',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/spooky.svg'%7D%5C%5D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/spooky.svg'}]</a></p>\n","urlObject":{"protocol":"http","port":"8000","path":["external","api","partner","v1","post",""],"host":["localhost","com"],"query":[],"variable":[]}},"response":[{"id":"1fb68911-74a3-4211-92b4-37b2270bc9b7","name":"Success","originalRequest":{"method":"GET","header":[],"url":"https://nextdoor.com/external/api/partner/v1/post/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"posts\": [\n        {\n            \"author_id\": {author_id},\n            \"body\": \"example body\"\n             \"comments\": [\n                {\n                    \"id\": {comment id},\n                    \"body\": \"example body\",\n                    \"creation_date_epoch_seconds\": {creation_date},\n                    \"parent_comment_id\":{parent comment_id}\n                }\n              \n            ],\n            \"creation_date_epoch_seconds\": {creation_date},\n            \"embed_url\": \"{Embed Url of Post}\",\n            \"id\": \"{Id}\",\n            \"reactions\": [\n                {\n                    \"id\": {reaction id},\n                    \"post_id\": {post id if this reacts to a post},\n                    \"comment_id\": //reserved for future use,\n                    \"type\": 1\n                }\n            ],\n            \"url\": \"{Share URL of Post}\",\n            \"media\": [\n                {\n                    \"is_photo\": {boolean},\n                    \"is_video\": {boolean},\n                    \"url\": \"{s3 media path}\",\n                    \"width\": {width of photo},\n                    \"height\": {height of photo}\n                }\n            ],\n            \"title\": \"{Title of Post}\"\n        }\n    ],\n    \"posts_length\": {posts_length}\n}"}],"_postman_id":"e058f20e-6f0b-455d-a050-5ccb4f91a57e"},{"name":"Get me","id":"bd09140a-8253-44c3-bc69-fcef5dd681e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://nextdoor.com/external/api/partner/v1/me/","description":"<p>Get your most recent Nextdoor posts.</p>\n<p>Returns a list of your Nextdoor posts. Metadata returned includes</p>\n<p><code>body:</code> Body text of post.</p>\n<p><code>comments:</code> List of comments and replies to comments of post.</p>\n<p><code>embed_url:</code> Embed url of post.</p>\n<p><code>reactions:</code> Reactions of post.</p>\n<p><code>url:</code> Share url of post.</p>\n<p><code>media:</code> Media information for each attachment of post.</p>\n<p><code>posts_length:</code> Number of posts returned.</p>\n<p><code>view_count:</code> Count of post views by other member from day 0 (post created) to day 14.</p>\n<p>Reference:</p>\n<p>List of nextdoor reactions:</p>\n<p>[{'id': 0,</p>\n<p>'name': 'thank',</p>\n<p>'color': '#F56A14',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-thank.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-thank.svg'}</a>,</p>\n<p>{'id': 21,</p>\n<p>'name': 'thank_tulip',</p>\n<p>'color': '#F56A14',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/thank-tulip.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/thank-tulip.svg'}</a>,</p>\n<p>{'id': 1,</p>\n<p>'name': 'like',</p>\n<p>'color': '#05A331',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/like.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/like.svg'}</a>,</p>\n<p>{'id': 18,</p>\n<p>'name': 'like2',</p>\n<p>'color': '#ED353B',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-like.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-like.svg'}</a>,</p>\n<p>{'id': 20,</p>\n<p>'name': 'agree',</p>\n<p>'color': '#006142',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-agree-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-agree-v2.svg'}</a>,</p>\n<p>{'id': 23,</p>\n<p>'name': 'quebec_flag',</p>\n<p>'color': '#224190',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-quebec.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-quebec.svg'}</a>,</p>\n<p>{'id': 24,</p>\n<p>'name': 'canada_flag',</p>\n<p>'color': '#ed1c24',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-canada.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-canada.svg'}</a>,</p>\n<p>{'id': 6,</p>\n<p>'name': 'metoo',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/metoo.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/metoo.svg'}</a>,</p>\n<p>{'id': 7,</p>\n<p>'name': 'love',</p>\n<p>'color': '#EA5C93',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/love.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/love.svg'}</a>,</p>\n<p>{'id': 9,</p>\n<p>'name': 'important',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/important.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/important.svg'}</a>,</p>\n<p>{'id': 3,</p>\n<p>'name': 'shock',</p>\n<p>'color': '#C45008',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-wow-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-wow-v2.svg'}</a>,</p>\n<p>{'id': 4,</p>\n<p>'name': 'sad',</p>\n<p>'color': '#C45008',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-sad.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-sad.svg'}</a>,</p>\n<p>{'id': 25,</p>\n<p>'name': 'celebrate',</p>\n<p>'color': '#9B00CB',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-celebrate.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-celebrate.svg'}</a>,</p>\n<p>{'id': 5,</p>\n<p>'name': 'angry',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/angry.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/angry.svg'}</a>,</p>\n<p>{'id': 8,</p>\n<p>'name': 'concerned',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/concerned.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/concerned.svg'}</a>,</p>\n<p>{'id': 10,</p>\n<p>'name': 'upset',</p>\n<p>'color': '#E57373',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/upset.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/upset.svg'}</a>,</p>\n<p>{'id': 2,</p>\n<p>'name': 'funny',</p>\n<p>'color': '#C45008',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-haha-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-haha-v2.svg'}</a>,</p>\n<p>{'id': 17,</p>\n<p>'name': 'plusone',</p>\n<p>'color': '#01579B',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one.svg'}</a>,</p>\n<p>{'id': 19,</p>\n<p>'name': 'plusone2',</p>\n<p>'color': '#05A331',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one-v2.svg'}</a>,</p>\n<p>{'id': 22,</p>\n<p>'name': 'spooky',</p>\n<p>'color': '#FF9100',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/spooky.svg'%7D%5C%5D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/spooky.svg'}]</a></p>\n","urlObject":{"protocol":"https","path":["external","api","partner","v1","me",""],"host":["nextdoor","com"],"query":[],"variable":[]}},"response":[{"id":"a466d85f-256a-47d9-9256-5b7a9a839006","name":"Success","originalRequest":{"method":"GET","header":[],"url":"https://nextdoor.com/external/api/partner/v1/post/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"posts\": [\n        {\n            \"author_id\": {author_id},\n            \"body\": \"example body\"\n             \"comments\": [\n                {\n                    \"id\": {comment id},\n                    \"body\": \"example body\",\n                    \"creation_date_epoch_seconds\": {creation_date},\n                    \"parent_comment_id\":{parent comment_id}\n                }\n              \n            ],\n            \"creation_date_epoch_seconds\": {creation_date},\n            \"embed_url\": \"{Embed Url of Post}\",\n            \"id\": \"{Id}\",\n            \"reactions\": [\n                {\n                    \"id\": {reaction id},\n                    \"post_id\": {post id if this reacts to a post},\n                    \"comment_id\": //reserved for future use,\n                    \"type\": 1\n                }\n            ],\n            \"url\": \"{Share URL of Post}\",\n            \"media\": [\n                {\n                    \"is_photo\": {boolean},\n                    \"is_video\": {boolean},\n                    \"url\": \"{s3 media path}\",\n                    \"width\": {width of photo},\n                    \"height\": {height of photo}\n                }\n            ],\n            \"title\": \"{Title of Post}\"\n        }\n    ],\n    \"posts_length\": {posts_length}\n}"}],"_postman_id":"bd09140a-8253-44c3-bc69-fcef5dd681e0"},{"name":"Get me local","id":"610ede98-6a77-4d4c-b46f-56c6d26e6eb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"http://localhost.com:8000/external/api/partner/v1/me/","description":"<p>Get your most recent Nextdoor posts.</p>\n<p>Returns a list of your Nextdoor posts. Metadata returned includes</p>\n<p><code>body:</code> Body text of post.</p>\n<p><code>comments:</code> List of comments and replies to comments of post.</p>\n<p><code>embed_url:</code> Embed url of post.</p>\n<p><code>reactions:</code> Reactions of post.</p>\n<p><code>url:</code> Share url of post.</p>\n<p><code>media:</code> Media information for each attachment of post.</p>\n<p><code>posts_length:</code> Number of posts returned.</p>\n<p><code>view_count:</code> Count of post views by other member from day 0 (post created) to day 14.</p>\n<p>Reference:</p>\n<p>List of nextdoor reactions:</p>\n<p>[{'id': 0,</p>\n<p>'name': 'thank',</p>\n<p>'color': '#F56A14',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-thank.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-thank.svg'}</a>,</p>\n<p>{'id': 21,</p>\n<p>'name': 'thank_tulip',</p>\n<p>'color': '#F56A14',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/thank-tulip.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/thank-tulip.svg'}</a>,</p>\n<p>{'id': 1,</p>\n<p>'name': 'like',</p>\n<p>'color': '#05A331',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/like.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/like.svg'}</a>,</p>\n<p>{'id': 18,</p>\n<p>'name': 'like2',</p>\n<p>'color': '#ED353B',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-like.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-like.svg'}</a>,</p>\n<p>{'id': 20,</p>\n<p>'name': 'agree',</p>\n<p>'color': '#006142',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-agree-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-agree-v2.svg'}</a>,</p>\n<p>{'id': 23,</p>\n<p>'name': 'quebec_flag',</p>\n<p>'color': '#224190',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-quebec.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-quebec.svg'}</a>,</p>\n<p>{'id': 24,</p>\n<p>'name': 'canada_flag',</p>\n<p>'color': '#ed1c24',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-canada.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-canada.svg'}</a>,</p>\n<p>{'id': 6,</p>\n<p>'name': 'metoo',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/metoo.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/metoo.svg'}</a>,</p>\n<p>{'id': 7,</p>\n<p>'name': 'love',</p>\n<p>'color': '#EA5C93',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/love.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/love.svg'}</a>,</p>\n<p>{'id': 9,</p>\n<p>'name': 'important',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/important.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/important.svg'}</a>,</p>\n<p>{'id': 3,</p>\n<p>'name': 'shock',</p>\n<p>'color': '#C45008',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-wow-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-wow-v2.svg'}</a>,</p>\n<p>{'id': 4,</p>\n<p>'name': 'sad',</p>\n<p>'color': '#C45008',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-sad.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-sad.svg'}</a>,</p>\n<p>{'id': 25,</p>\n<p>'name': 'celebrate',</p>\n<p>'color': '#9B00CB',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-celebrate.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-celebrate.svg'}</a>,</p>\n<p>{'id': 5,</p>\n<p>'name': 'angry',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/angry.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/angry.svg'}</a>,</p>\n<p>{'id': 8,</p>\n<p>'name': 'concerned',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/concerned.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/concerned.svg'}</a>,</p>\n<p>{'id': 10,</p>\n<p>'name': 'upset',</p>\n<p>'color': '#E57373',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/upset.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/upset.svg'}</a>,</p>\n<p>{'id': 2,</p>\n<p>'name': 'funny',</p>\n<p>'color': '#C45008',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-haha-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-haha-v2.svg'}</a>,</p>\n<p>{'id': 17,</p>\n<p>'name': 'plusone',</p>\n<p>'color': '#01579B',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one.svg'}</a>,</p>\n<p>{'id': 19,</p>\n<p>'name': 'plusone2',</p>\n<p>'color': '#05A331',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one-v2.svg'}</a>,</p>\n<p>{'id': 22,</p>\n<p>'name': 'spooky',</p>\n<p>'color': '#FF9100',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/spooky.svg'%7D%5C%5D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/spooky.svg'}]</a></p>\n","urlObject":{"protocol":"http","port":"8000","path":["external","api","partner","v1","me",""],"host":["localhost","com"],"query":[],"variable":[]}},"response":[{"id":"e704eb4d-16ce-4fe3-a241-cbe4a5962518","name":"Success","originalRequest":{"method":"GET","header":[],"url":"https://nextdoor.com/external/api/partner/v1/post/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"posts\": [\n        {\n            \"author_id\": {author_id},\n            \"body\": \"example body\"\n             \"comments\": [\n                {\n                    \"id\": {comment id},\n                    \"body\": \"example body\",\n                    \"creation_date_epoch_seconds\": {creation_date},\n                    \"parent_comment_id\":{parent comment_id}\n                }\n              \n            ],\n            \"creation_date_epoch_seconds\": {creation_date},\n            \"embed_url\": \"{Embed Url of Post}\",\n            \"id\": \"{Id}\",\n            \"reactions\": [\n                {\n                    \"id\": {reaction id},\n                    \"post_id\": {post id if this reacts to a post},\n                    \"comment_id\": //reserved for future use,\n                    \"type\": 1\n                }\n            ],\n            \"url\": \"{Share URL of Post}\",\n            \"media\": [\n                {\n                    \"is_photo\": {boolean},\n                    \"is_video\": {boolean},\n                    \"url\": \"{s3 media path}\",\n                    \"width\": {width of photo},\n                    \"height\": {height of photo}\n                }\n            ],\n            \"title\": \"{Title of Post}\"\n        }\n    ],\n    \"posts_length\": {posts_length}\n}"}],"_postman_id":"610ede98-6a77-4d4c-b46f-56c6d26e6eb7"},{"name":"Get profiles","id":"d44dfe05-4438-4ad0-9aff-a1abdfcae798","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"http://localhost.com:8000/external/api/partner/v1/me/profiles","description":"<p>Get your most recent Nextdoor posts.</p>\n<p>Returns a list of your Nextdoor posts. Metadata returned includes</p>\n<p><code>body:</code> Body text of post.</p>\n<p><code>comments:</code> List of comments and replies to comments of post.</p>\n<p><code>embed_url:</code> Embed url of post.</p>\n<p><code>reactions:</code> Reactions of post.</p>\n<p><code>url:</code> Share url of post.</p>\n<p><code>media:</code> Media information for each attachment of post.</p>\n<p><code>posts_length:</code> Number of posts returned.</p>\n<p><code>view_count:</code> Count of post views by other member from day 0 (post created) to day 14.</p>\n<p>Reference:</p>\n<p>List of nextdoor reactions:</p>\n<p>[{'id': 0,</p>\n<p>'name': 'thank',</p>\n<p>'color': '#F56A14',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-thank.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-thank.svg'}</a>,</p>\n<p>{'id': 21,</p>\n<p>'name': 'thank_tulip',</p>\n<p>'color': '#F56A14',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/thank-tulip.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/thank-tulip.svg'}</a>,</p>\n<p>{'id': 1,</p>\n<p>'name': 'like',</p>\n<p>'color': '#05A331',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/like.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/like.svg'}</a>,</p>\n<p>{'id': 18,</p>\n<p>'name': 'like2',</p>\n<p>'color': '#ED353B',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-like.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-like.svg'}</a>,</p>\n<p>{'id': 20,</p>\n<p>'name': 'agree',</p>\n<p>'color': '#006142',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-agree-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-agree-v2.svg'}</a>,</p>\n<p>{'id': 23,</p>\n<p>'name': 'quebec_flag',</p>\n<p>'color': '#224190',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-quebec.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-quebec.svg'}</a>,</p>\n<p>{'id': 24,</p>\n<p>'name': 'canada_flag',</p>\n<p>'color': '#ed1c24',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-canada.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-canada.svg'}</a>,</p>\n<p>{'id': 6,</p>\n<p>'name': 'metoo',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/metoo.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/metoo.svg'}</a>,</p>\n<p>{'id': 7,</p>\n<p>'name': 'love',</p>\n<p>'color': '#EA5C93',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/love.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/love.svg'}</a>,</p>\n<p>{'id': 9,</p>\n<p>'name': 'important',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/important.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/important.svg'}</a>,</p>\n<p>{'id': 3,</p>\n<p>'name': 'shock',</p>\n<p>'color': '#C45008',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-wow-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-wow-v2.svg'}</a>,</p>\n<p>{'id': 4,</p>\n<p>'name': 'sad',</p>\n<p>'color': '#C45008',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-sad.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-sad.svg'}</a>,</p>\n<p>{'id': 25,</p>\n<p>'name': 'celebrate',</p>\n<p>'color': '#9B00CB',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-celebrate.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-celebrate.svg'}</a>,</p>\n<p>{'id': 5,</p>\n<p>'name': 'angry',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/angry.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/angry.svg'}</a>,</p>\n<p>{'id': 8,</p>\n<p>'name': 'concerned',</p>\n<p>'color': '',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/concerned.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/concerned.svg'}</a>,</p>\n<p>{'id': 10,</p>\n<p>'name': 'upset',</p>\n<p>'color': '#E57373',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/upset.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/upset.svg'}</a>,</p>\n<p>{'id': 2,</p>\n<p>'name': 'funny',</p>\n<p>'color': '#C45008',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-haha-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/mood-haha-v2.svg'}</a>,</p>\n<p>{'id': 17,</p>\n<p>'name': 'plusone',</p>\n<p>'color': '#01579B',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one.svg'}</a>,</p>\n<p>{'id': 19,</p>\n<p>'name': 'plusone2',</p>\n<p>'color': '#05A331',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one-v2.svg'%7D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/plus-one-v2.svg'}</a>,</p>\n<p>{'id': 22,</p>\n<p>'name': 'spooky',</p>\n<p>'color': '#FF9100',</p>\n<p>'url': '<a href=\"https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/spooky.svg'%7D%5C%5D\">https://d19rpgkrjeba2z.cloudfront.net/5d3d2abf98a6fc58/static/images/reactions/spooky.svg'}]</a></p>\n","urlObject":{"protocol":"http","port":"8000","path":["external","api","partner","v1","me","profiles"],"host":["localhost","com"],"query":[],"variable":[]}},"response":[{"id":"d45eeb98-896b-413b-9a11-8563d6aa936e","name":"Success","originalRequest":{"method":"GET","header":[],"url":"https://nextdoor.com/external/api/partner/v1/post/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"posts\": [\n        {\n            \"author_id\": {author_id},\n            \"body\": \"example body\"\n             \"comments\": [\n                {\n                    \"id\": {comment id},\n                    \"body\": \"example body\",\n                    \"creation_date_epoch_seconds\": {creation_date},\n                    \"parent_comment_id\":{parent comment_id}\n                }\n              \n            ],\n            \"creation_date_epoch_seconds\": {creation_date},\n            \"embed_url\": \"{Embed Url of Post}\",\n            \"id\": \"{Id}\",\n            \"reactions\": [\n                {\n                    \"id\": {reaction id},\n                    \"post_id\": {post id if this reacts to a post},\n                    \"comment_id\": //reserved for future use,\n                    \"type\": 1\n                }\n            ],\n            \"url\": \"{Share URL of Post}\",\n            \"media\": [\n                {\n                    \"is_photo\": {boolean},\n                    \"is_video\": {boolean},\n                    \"url\": \"{s3 media path}\",\n                    \"width\": {width of photo},\n                    \"height\": {height of photo}\n                }\n            ],\n            \"title\": \"{Title of Post}\"\n        }\n    ],\n    \"posts_length\": {posts_length}\n}"}],"_postman_id":"d44dfe05-4438-4ad0-9aff-a1abdfcae798"},{"name":"Get agency boundary","id":"4c1d7fd1-f9c6-430e-8f20-4d0531016b60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://nextdoor.com/external/api/partner/v1/agency/boundary/?show_geometries=true","description":"<p>Get agency custom area boundary</p>\n","urlObject":{"protocol":"https","path":["external","api","partner","v1","agency","boundary",""],"host":["nextdoor","com"],"query":[{"description":{"content":"<p>Include boundary data or not. Please cache the result and only re-fetch on needed.</p>\n","type":"text/plain"},"key":"show_geometries","value":"true"}],"variable":[]}},"response":[{"id":"7ddbb3e4-d0bf-4028-a477-4b02b59dda26","name":"No geometries","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://nextdoor.com/external/api/partner/v1/agency/boundary/?show_geometries=","protocol":"https","host":["nextdoor","com"],"path":["external","api","partner","v1","agency","boundary",""],"query":[{"key":"show_geometries","value":"","description":"Include boundary data or not. Please cache the result and only re-fetch on needed."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 22 Aug 2023 19:26:10 GMT"},{"key":"server","value":"istio-envoy"},{"key":"vary","value":"Accept-Encoding,Cookie"},{"key":"x-nextdoor-langpref","value":"en-us"},{"key":"cache-control","value":"no-store"},{"key":"pragma","value":"no-cache"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"content-security-policy","value":"frame-ancestors 'self'"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"x-content-type-options","value":"nosniff"},{"key":"referrer-policy","value":"strict-origin-when-cross-origin"},{"key":"dd-trace-id","value":"2788581588147450498"},{"key":"set-cookie","value":"WERC=1ced7576-da89-419a-892c-83cfeadcaab92308221692732370; Domain=.nextdoor.com; expires=Tue, 22 Aug 2023 19:56:10 GMT; Max-Age=1800; Path=/; SameSite=Lax; Secure"},{"key":"context-id","value":"9d8c196d-f177-4ee7-afab-f8b660c473c4"},{"key":"x-amzn-trace-id","value":"Root=1-64e50bd2-7a6dbf2a75f0414135e547db;ContextID=9d8c196d-f177-4ee7-afab-f8b660c473c4"},{"key":"strict-transport-security","value":"max-age=0"},{"key":"cache-proxy-status","value":"MISS"},{"key":"content-encoding","value":"gzip"},{"key":"x-envoy-upstream-service-time","value":"170"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f18dd0c3095e2c73f72cff3122430cb8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SFO5-C1"},{"key":"X-Amz-Cf-Id","value":"3MbDTBaJLLL8sh3b_Ees_pu3IBn5P0pXeUavE9urSmJxhdM7oY3pZQ=="}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Custom\",\n        \"group_id\": 63412938,\n        \"geometry_id\": 25219952,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Milky Way Water Services\",\n        \"group_id\": 62782595,\n        \"geometry_id\": 25049094,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Region 10\",\n        \"group_id\": 62784526,\n        \"geometry_id\": 25049363,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Region 11\",\n        \"group_id\": 62784525,\n        \"geometry_id\": 25049362,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Region 12\",\n        \"group_id\": 62784537,\n        \"geometry_id\": 25049373,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Region 13\",\n        \"group_id\": 62784536,\n        \"geometry_id\": 25049372,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Region 2\",\n        \"group_id\": 62784534,\n        \"geometry_id\": 25049370,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Region 3\",\n        \"group_id\": 62784533,\n        \"geometry_id\": 25049369,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Region 4\",\n        \"group_id\": 62784532,\n        \"geometry_id\": 25049368,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Region 5\",\n        \"group_id\": 62784524,\n        \"geometry_id\": 25049361,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Region 6\",\n        \"group_id\": 62784530,\n        \"geometry_id\": 25049367,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Region 7\",\n        \"group_id\": 62784529,\n        \"geometry_id\": 25049366,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Region 8\",\n        \"group_id\": 62784528,\n        \"geometry_id\": 25049365,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Region 9\",\n        \"group_id\": 62784527,\n        \"geometry_id\": 25049364,\n        \"type\": \"area\"\n    },\n    {\n        \"name\": \"Test\",\n        \"group_id\": 63412939,\n        \"geometry_id\": 25219953,\n        \"type\": \"area\"\n    }\n]"},{"id":"5ab2acf6-bd27-4241-b392-9c86287b65a6","name":"With getmetries","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://nextdoor.com/external/api/partner/v1/agency/boundary/?show_geometries=true","protocol":"https","host":["nextdoor","com"],"path":["external","api","partner","v1","agency","boundary",""],"query":[{"key":"show_geometries","value":"true","description":"Include boundary data or not. Please cache the result and only re-fetch on needed."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 22 Aug 2023 19:42:35 GMT"},{"key":"server","value":"istio-envoy"},{"key":"vary","value":"Accept-Encoding,Cookie"},{"key":"x-nextdoor-langpref","value":"en-us"},{"key":"cache-control","value":"no-store"},{"key":"pragma","value":"no-cache"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"content-security-policy","value":"frame-ancestors 'self'"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"x-content-type-options","value":"nosniff"},{"key":"referrer-policy","value":"strict-origin-when-cross-origin"},{"key":"dd-trace-id","value":"563318147782181596"},{"key":"set-cookie","value":"WERC=1ced7576-da89-419a-892c-83cfeadcaab92308221692733355; Domain=.nextdoor.com; expires=Tue, 22 Aug 2023 20:12:35 GMT; Max-Age=1800; Path=/; SameSite=Lax; Secure"},{"key":"context-id","value":"2e826b54-4b1d-43b3-a5aa-9bdc8a928355"},{"key":"x-amzn-trace-id","value":"Root=1-64e50fab-0d01ec6349a593d90f6f32a2;ContextID=2e826b54-4b1d-43b3-a5aa-9bdc8a928355"},{"key":"strict-transport-security","value":"max-age=0"},{"key":"cache-proxy-status","value":"MISS"},{"key":"content-encoding","value":"gzip"},{"key":"x-envoy-upstream-service-time","value":"162"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ec53ea7490128507417199834543513a.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SFO5-C1"},{"key":"X-Amz-Cf-Id","value":"59sFAKkMrNalvPw4JIMUHdwYsWouvOMLN0bvBG17Ffh74uZv2jQkXg=="}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"name\": \"Custom\",\n        \"group_id\": 63412938,\n        \"geometry_id\": 25219952,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.186652, 37.903157 ], [ -122.17228, 37.885149 ], [ -122.174184, 37.869833 ], [ -122.187536, 37.880365 ], [ -122.188557, 37.88097 ], [ -122.188921, 37.880925 ], [ -122.189763, 37.881044 ], [ -122.189862, 37.881279 ], [ -122.189957, 37.881439 ], [ -122.191256, 37.882177 ], [ -122.191638, 37.882667 ], [ -122.186652, 37.903157 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Milky Way Water Services\",\n        \"group_id\": 62782595,\n        \"geometry_id\": 25049094,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.225254, 37.890342 ], [ -122.220923, 37.89297 ], [ -122.220736, 37.893067 ], [ -122.22034, 37.893379 ], [ -122.218995, 37.894142 ], [ -122.216639, 37.895555 ], [ -122.215852, 37.895267 ], [ -122.214549, 37.896062 ], [ -122.212554, 37.893518 ], [ -122.21054, 37.893642 ], [ -122.209595, 37.89448 ], [ -122.209309, 37.894652 ], [ -122.20946, 37.894735 ], [ -122.208922, 37.895054 ], [ -122.208824, 37.895004 ], [ -122.208725, 37.895078 ], [ -122.208704, 37.895016 ], [ -122.206882, 37.89611 ], [ -122.207129, 37.896375 ], [ -122.2081, 37.897316 ], [ -122.208501, 37.897738 ], [ -122.2086, 37.897646 ], [ -122.209328, 37.898384 ], [ -122.210597, 37.899383 ], [ -122.210792, 37.899499 ], [ -122.210585, 37.899839 ], [ -122.210363, 37.900124 ], [ -122.210264, 37.900083 ], [ -122.21015, 37.900283 ], [ -122.210029, 37.900319 ], [ -122.209835, 37.900435 ], [ -122.209468, 37.900538 ], [ -122.209249, 37.900618 ], [ -122.208751, 37.900884 ], [ -122.208652, 37.900922 ], [ -122.208435, 37.900953 ], [ -122.207786, 37.900923 ], [ -122.207593, 37.900949 ], [ -122.207452, 37.901006 ], [ -122.207257, 37.901152 ], [ -122.207178, 37.901258 ], [ -122.207127, 37.901461 ], [ -122.207087, 37.901721 ], [ -122.207218, 37.901729 ], [ -122.207224, 37.9017 ], [ -122.20828, 37.901643 ], [ -122.20892, 37.901505 ], [ -122.209754, 37.901403 ], [ -122.211421, 37.901454 ], [ -122.21188, 37.901774 ], [ -122.212161, 37.902653 ], [ -122.212428, 37.902856 ], [ -122.213218, 37.903182 ], [ -122.213708, 37.903496 ], [ -122.214091, 37.903903 ], [ -122.210714, 37.905765 ], [ -122.210393, 37.905872 ], [ -122.210645, 37.906092 ], [ -122.210807, 37.906274 ], [ -122.211058, 37.906701 ], [ -122.211129, 37.907251 ], [ -122.211061, 37.90752 ], [ -122.210974, 37.907747 ], [ -122.210796, 37.908038 ], [ -122.210499, 37.908375 ], [ -122.210014, 37.908633 ], [ -122.209585, 37.90878 ], [ -122.209125, 37.908843 ], [ -122.208559, 37.90879 ], [ -122.207969, 37.90867 ], [ -122.206847, 37.908392 ], [ -122.206091, 37.90831 ], [ -122.205692, 37.908304 ], [ -122.20542, 37.908323 ], [ -122.204897, 37.908411 ], [ -122.204402, 37.908661 ], [ -122.203884, 37.908986 ], [ -122.203694, 37.909128 ], [ -122.203291, 37.909522 ], [ -122.20326, 37.909885 ], [ -122.202946, 37.910199 ], [ -122.202195, 37.91158 ], [ -122.20063, 37.913946 ], [ -122.200422, 37.914016 ], [ -122.200195, 37.914285 ], [ -122.200022, 37.914894 ], [ -122.200035, 37.915511 ], [ -122.200103, 37.915933 ], [ -122.200246, 37.916041 ], [ -122.200067, 37.916713 ], [ -122.199802, 37.917018 ], [ -122.199859, 37.917509 ], [ -122.199161, 37.917602 ], [ -122.198909, 37.918158 ], [ -122.198009, 37.9186 ], [ -122.197537, 37.919013 ], [ -122.197137, 37.919456 ], [ -122.19696, 37.919805 ], [ -122.196874, 37.920132 ], [ -122.196911, 37.920311 ], [ -122.196444, 37.920736 ], [ -122.196048, 37.921347 ], [ -122.195702, 37.921555 ], [ -122.194656, 37.921446 ], [ -122.194093, 37.921128 ], [ -122.193499, 37.920823 ], [ -122.19312, 37.920353 ], [ -122.192613, 37.920183 ], [ -122.191633, 37.920342 ], [ -122.191206, 37.920272 ], [ -122.190868, 37.920009 ], [ -122.190591, 37.919884 ], [ -122.189118, 37.919565 ], [ -122.188488, 37.919831 ], [ -122.187725, 37.919701 ], [ -122.186647, 37.919354 ], [ -122.186463, 37.919192 ], [ -122.186095, 37.91896 ], [ -122.185544, 37.918842 ], [ -122.184847, 37.918731 ], [ -122.184631, 37.918872 ], [ -122.184037, 37.918867 ], [ -122.184014, 37.918864 ], [ -122.18387, 37.918723 ], [ -122.183528, 37.918629 ], [ -122.182992, 37.918635 ], [ -122.182423, 37.918726 ], [ -122.182162, 37.9187 ], [ -122.181813, 37.918561 ], [ -122.181284, 37.918422 ], [ -122.180905, 37.918418 ], [ -122.180577, 37.918505 ], [ -122.180573, 37.918543 ], [ -122.178306, 37.91832 ], [ -122.178209, 37.918286 ], [ -122.176956, 37.918144 ], [ -122.176965, 37.918049 ], [ -122.176818, 37.918033 ], [ -122.176316, 37.91769 ], [ -122.17605, 37.917392 ], [ -122.175663, 37.91582 ], [ -122.175535, 37.915764 ], [ -122.175667, 37.915661 ], [ -122.175279, 37.915347 ], [ -122.175027, 37.915543 ], [ -122.174983, 37.915524 ], [ -122.174056, 37.915394 ], [ -122.173193, 37.915522 ], [ -122.172744, 37.915509 ], [ -122.170842, 37.916007 ], [ -122.16987, 37.916062 ], [ -122.166785, 37.917035 ], [ -122.165349, 37.915512 ], [ -122.158638, 37.915423 ], [ -122.154288, 37.912926 ], [ -122.15018, 37.912121 ], [ -122.131654, 37.915665 ], [ -122.103623, 37.91937 ], [ -122.100079, 37.901649 ], [ -122.165081, 37.893734 ], [ -122.165053, 37.891963 ], [ -122.164912, 37.891834 ], [ -122.164656, 37.891825 ], [ -122.164644, 37.891098 ], [ -122.164141, 37.891066 ], [ -122.164087, 37.890783 ], [ -122.164136, 37.89047 ], [ -122.164258, 37.890376 ], [ -122.164691, 37.890418 ], [ -122.164942, 37.890571 ], [ -122.165015, 37.890578 ], [ -122.165032, 37.889546 ], [ -122.164986, 37.884678 ], [ -122.16414, 37.884716 ], [ -122.163793, 37.884398 ], [ -122.163108, 37.883997 ], [ -122.163309, 37.883615 ], [ -122.162742, 37.88333 ], [ -122.162361, 37.883293 ], [ -122.161695, 37.883093 ], [ -122.163238, 37.88113 ], [ -122.157232, 37.88116 ], [ -122.156556, 37.881175 ], [ -122.155484, 37.88117 ], [ -122.155545, 37.872628 ], [ -122.156683, 37.872634 ], [ -122.156675, 37.871604 ], [ -122.145262, 37.868523 ], [ -122.144251, 37.868521 ], [ -122.142925, 37.867298 ], [ -122.142573, 37.867108 ], [ -122.142938, 37.866602 ], [ -122.142789, 37.866534 ], [ -122.142882, 37.866385 ], [ -122.14323, 37.86591 ], [ -122.143605, 37.866082 ], [ -122.143811, 37.866208 ], [ -122.144288, 37.865644 ], [ -122.144304, 37.86482 ], [ -122.144709, 37.863592 ], [ -122.144347, 37.863073 ], [ -122.144363, 37.862697 ], [ -122.143795, 37.862746 ], [ -122.143681, 37.863385 ], [ -122.142938, 37.863284 ], [ -122.142832, 37.86296 ], [ -122.142643, 37.862561 ], [ -122.142639, 37.862473 ], [ -122.142687, 37.862318 ], [ -122.14278, 37.862167 ], [ -122.142927, 37.862014 ], [ -122.142843, 37.86188 ], [ -122.142501, 37.861552 ], [ -122.142915, 37.861327 ], [ -122.142715, 37.859496 ], [ -122.142702, 37.858577 ], [ -122.142679, 37.858163 ], [ -122.142598, 37.852642 ], [ -122.142062, 37.852312 ], [ -122.14178, 37.85128 ], [ -122.141524, 37.851397 ], [ -122.140702, 37.851016 ], [ -122.140324, 37.851951 ], [ -122.140084, 37.851717 ], [ -122.139887, 37.851241 ], [ -122.139802, 37.85 ], [ -122.139776, 37.849925 ], [ -122.139572, 37.849831 ], [ -122.139444, 37.849036 ], [ -122.140754, 37.848954 ], [ -122.14054, 37.847859 ], [ -122.141627, 37.847382 ], [ -122.14203, 37.847763 ], [ -122.142174, 37.847525 ], [ -122.142496, 37.847268 ], [ -122.142373, 37.846568 ], [ -122.14209, 37.846319 ], [ -122.142046, 37.84625 ], [ -122.141995, 37.845878 ], [ -122.141885, 37.845765 ], [ -122.141781, 37.845429 ], [ -122.141606, 37.845467 ], [ -122.140717, 37.844767 ], [ -122.140599, 37.84459 ], [ -122.140523, 37.844245 ], [ -122.140581, 37.844047 ], [ -122.140726, 37.843759 ], [ -122.140918, 37.843505 ], [ -122.141221, 37.843267 ], [ -122.141641, 37.84298 ], [ -122.141782, 37.843059 ], [ -122.141892, 37.843022 ], [ -122.141936, 37.843082 ], [ -122.141942, 37.843198 ], [ -122.141917, 37.84326 ], [ -122.141978, 37.843307 ], [ -122.142017, 37.843362 ], [ -122.142202, 37.843415 ], [ -122.144872, 37.840284 ], [ -122.14604, 37.838867 ], [ -122.148685, 37.839188 ], [ -122.149782, 37.840047 ], [ -122.150289, 37.840193 ], [ -122.151085, 37.840578 ], [ -122.154289, 37.842069 ], [ -122.155271, 37.842941 ], [ -122.156741, 37.843638 ], [ -122.156921, 37.843605 ], [ -122.158533, 37.8419 ], [ -122.161007, 37.842534 ], [ -122.164017, 37.843375 ], [ -122.165486, 37.844505 ], [ -122.167779, 37.846487 ], [ -122.170188, 37.846896 ], [ -122.174896, 37.846907 ], [ -122.174777, 37.850549 ], [ -122.174886, 37.850507 ], [ -122.188586, 37.850433 ], [ -122.188619, 37.852042 ], [ -122.189156, 37.85316 ], [ -122.18951, 37.853395 ], [ -122.190176, 37.854086 ], [ -122.191239, 37.854941 ], [ -122.192917, 37.855716 ], [ -122.193632, 37.855984 ], [ -122.194335, 37.85633 ], [ -122.194987, 37.856713 ], [ -122.193312, 37.858794 ], [ -122.191377, 37.862739 ], [ -122.192091, 37.862967 ], [ -122.192549, 37.864232 ], [ -122.193298, 37.864548 ], [ -122.193693, 37.864415 ], [ -122.194131, 37.865126 ], [ -122.193941, 37.865562 ], [ -122.194198, 37.865834 ], [ -122.194621, 37.865938 ], [ -122.195204, 37.866193 ], [ -122.19555, 37.866197 ], [ -122.195875, 37.866223 ], [ -122.195994, 37.866013 ], [ -122.196246, 37.866135 ], [ -122.196325, 37.866002 ], [ -122.200463, 37.86661 ], [ -122.200952, 37.866731 ], [ -122.203168, 37.866473 ], [ -122.20341, 37.867603 ], [ -122.202503, 37.867673 ], [ -122.201298, 37.86784 ], [ -122.201146, 37.867901 ], [ -122.201117, 37.867959 ], [ -122.201121, 37.868174 ], [ -122.201857, 37.86819 ], [ -122.202063, 37.868231 ], [ -122.20222, 37.868282 ], [ -122.202368, 37.868354 ], [ -122.20268, 37.868589 ], [ -122.202527, 37.8687 ], [ -122.202353, 37.868554 ], [ -122.202214, 37.868463 ], [ -122.202038, 37.86839 ], [ -122.201897, 37.86836 ], [ -122.199338, 37.868296 ], [ -122.198937, 37.868196 ], [ -122.198245, 37.869322 ], [ -122.196837, 37.868739 ], [ -122.195874, 37.868973 ], [ -122.195461, 37.869746 ], [ -122.194427, 37.869648 ], [ -122.194392, 37.869754 ], [ -122.19427, 37.86997 ], [ -122.194077, 37.870166 ], [ -122.193872, 37.870297 ], [ -122.193511, 37.870423 ], [ -122.193501, 37.870366 ], [ -122.193218, 37.870438 ], [ -122.192975, 37.870546 ], [ -122.192236, 37.871051 ], [ -122.191848, 37.871357 ], [ -122.19195, 37.871495 ], [ -122.192791, 37.873532 ], [ -122.191293, 37.874174 ], [ -122.19115, 37.875001 ], [ -122.191026, 37.875873 ], [ -122.190974, 37.876088 ], [ -122.190727, 37.87621 ], [ -122.191173, 37.877787 ], [ -122.189734, 37.878236 ], [ -122.187233, 37.878144 ], [ -122.18681, 37.878554 ], [ -122.187084, 37.879957 ], [ -122.187176, 37.880151 ], [ -122.188557, 37.88097 ], [ -122.188921, 37.880925 ], [ -122.189763, 37.881044 ], [ -122.189862, 37.881279 ], [ -122.189957, 37.881439 ], [ -122.191256, 37.882177 ], [ -122.192049, 37.883195 ], [ -122.192294, 37.883221 ], [ -122.192662, 37.88336 ], [ -122.192909, 37.883618 ], [ -122.192965, 37.884042 ], [ -122.194032, 37.883747 ], [ -122.193998, 37.883673 ], [ -122.194231, 37.883608 ], [ -122.194698, 37.88341 ], [ -122.19552, 37.883152 ], [ -122.195554, 37.883298 ], [ -122.195815, 37.883177 ], [ -122.196094, 37.883101 ], [ -122.196127, 37.883175 ], [ -122.199161, 37.88236 ], [ -122.199179, 37.882294 ], [ -122.199194, 37.882059 ], [ -122.199626, 37.882074 ], [ -122.19985, 37.882156 ], [ -122.202802, 37.88136 ], [ -122.203491, 37.881154 ], [ -122.211416, 37.878961 ], [ -122.21143, 37.878788 ], [ -122.212304, 37.878842 ], [ -122.216706, 37.878957 ], [ -122.220644, 37.881858 ], [ -122.220847, 37.882194 ], [ -122.22112, 37.88271 ], [ -122.221264, 37.883537 ], [ -122.221408, 37.883735 ], [ -122.221538, 37.883872 ], [ -122.22236, 37.884597 ], [ -122.222184, 37.88451 ], [ -122.223191, 37.887009 ], [ -122.224561, 37.889795 ], [ -122.225254, 37.890342 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Region 10\",\n        \"group_id\": 62784526,\n        \"geometry_id\": 25049363,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.17228, 37.885149 ], [ -122.186652, 37.903157 ], [ -122.182882, 37.918653 ], [ -122.182423, 37.918726 ], [ -122.182162, 37.9187 ], [ -122.181813, 37.918561 ], [ -122.181284, 37.918422 ], [ -122.180905, 37.918418 ], [ -122.180577, 37.918505 ], [ -122.180573, 37.918543 ], [ -122.178306, 37.91832 ], [ -122.178209, 37.918286 ], [ -122.176956, 37.918144 ], [ -122.176965, 37.918049 ], [ -122.176818, 37.918033 ], [ -122.176316, 37.91769 ], [ -122.17605, 37.917392 ], [ -122.175663, 37.91582 ], [ -122.175535, 37.915764 ], [ -122.175667, 37.915661 ], [ -122.175279, 37.915347 ], [ -122.175027, 37.915543 ], [ -122.174983, 37.915524 ], [ -122.174056, 37.915394 ], [ -122.173193, 37.915522 ], [ -122.172744, 37.915509 ], [ -122.170842, 37.916007 ], [ -122.16987, 37.916062 ], [ -122.166785, 37.917035 ], [ -122.165349, 37.915512 ], [ -122.161925, 37.913925 ], [ -122.161659, 37.913919 ], [ -122.161723, 37.913857 ], [ -122.160988, 37.913522 ], [ -122.161065, 37.913214 ], [ -122.160909, 37.913042 ], [ -122.160942, 37.91101 ], [ -122.160939, 37.909484 ], [ -122.165216, 37.909492 ], [ -122.165085, 37.897092 ], [ -122.165081, 37.893734 ], [ -122.165053, 37.891963 ], [ -122.164912, 37.891834 ], [ -122.164656, 37.891825 ], [ -122.164644, 37.891098 ], [ -122.164141, 37.891066 ], [ -122.164087, 37.890783 ], [ -122.164136, 37.89047 ], [ -122.164258, 37.890376 ], [ -122.164691, 37.890418 ], [ -122.164942, 37.890571 ], [ -122.165015, 37.890578 ], [ -122.165032, 37.889546 ], [ -122.165012, 37.887428 ], [ -122.17228, 37.885149 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Region 11\",\n        \"group_id\": 62784525,\n        \"geometry_id\": 25049362,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.151645, 37.857737 ], [ -122.16505, 37.863297 ], [ -122.158781, 37.881152 ], [ -122.157232, 37.88116 ], [ -122.156556, 37.881175 ], [ -122.155484, 37.88117 ], [ -122.155545, 37.872628 ], [ -122.156683, 37.872634 ], [ -122.156675, 37.871604 ], [ -122.148215, 37.86932 ], [ -122.151645, 37.857737 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Region 12\",\n        \"group_id\": 62784537,\n        \"geometry_id\": 25049373,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.182882, 37.918653 ], [ -122.191638, 37.882667 ], [ -122.192049, 37.883195 ], [ -122.192294, 37.883221 ], [ -122.192662, 37.88336 ], [ -122.192909, 37.883618 ], [ -122.192965, 37.884042 ], [ -122.194032, 37.883747 ], [ -122.193998, 37.883673 ], [ -122.194231, 37.883608 ], [ -122.194698, 37.88341 ], [ -122.195153, 37.883267 ], [ -122.204334, 37.908704 ], [ -122.203884, 37.908986 ], [ -122.203694, 37.909128 ], [ -122.203291, 37.909522 ], [ -122.20326, 37.909885 ], [ -122.202946, 37.910199 ], [ -122.202195, 37.91158 ], [ -122.20063, 37.913946 ], [ -122.200422, 37.914016 ], [ -122.200195, 37.914285 ], [ -122.200022, 37.914894 ], [ -122.200035, 37.915511 ], [ -122.200103, 37.915933 ], [ -122.200246, 37.916041 ], [ -122.200067, 37.916713 ], [ -122.199802, 37.917018 ], [ -122.199859, 37.917509 ], [ -122.199161, 37.917602 ], [ -122.198909, 37.918158 ], [ -122.198009, 37.9186 ], [ -122.197537, 37.919013 ], [ -122.197137, 37.919456 ], [ -122.19696, 37.919805 ], [ -122.196874, 37.920132 ], [ -122.196911, 37.920311 ], [ -122.196444, 37.920736 ], [ -122.196048, 37.921347 ], [ -122.195702, 37.921555 ], [ -122.194656, 37.921446 ], [ -122.194093, 37.921128 ], [ -122.193499, 37.920823 ], [ -122.19312, 37.920353 ], [ -122.192613, 37.920183 ], [ -122.191633, 37.920342 ], [ -122.191206, 37.920272 ], [ -122.190868, 37.920009 ], [ -122.190591, 37.919884 ], [ -122.189118, 37.919565 ], [ -122.188488, 37.919831 ], [ -122.187725, 37.919701 ], [ -122.186647, 37.919354 ], [ -122.186463, 37.919192 ], [ -122.186095, 37.91896 ], [ -122.185544, 37.918842 ], [ -122.184847, 37.918731 ], [ -122.184631, 37.918872 ], [ -122.184037, 37.918867 ], [ -122.184014, 37.918864 ], [ -122.18387, 37.918723 ], [ -122.183528, 37.918629 ], [ -122.182992, 37.918635 ], [ -122.182882, 37.918653 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Region 13\",\n        \"group_id\": 62784536,\n        \"geometry_id\": 25049372,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.142727, 37.842799 ], [ -122.144872, 37.840284 ], [ -122.14604, 37.838867 ], [ -122.148685, 37.839188 ], [ -122.149782, 37.840047 ], [ -122.142727, 37.842799 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Region 2\",\n        \"group_id\": 62784534,\n        \"geometry_id\": 25049370,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.204334, 37.908704 ], [ -122.195153, 37.883267 ], [ -122.19552, 37.883152 ], [ -122.195554, 37.883298 ], [ -122.195815, 37.883177 ], [ -122.196094, 37.883101 ], [ -122.196127, 37.883175 ], [ -122.199161, 37.88236 ], [ -122.199179, 37.882294 ], [ -122.199194, 37.882059 ], [ -122.199626, 37.882074 ], [ -122.19985, 37.882156 ], [ -122.202802, 37.88136 ], [ -122.203491, 37.881154 ], [ -122.206295, 37.880378 ], [ -122.210336, 37.893823 ], [ -122.209595, 37.89448 ], [ -122.209309, 37.894652 ], [ -122.20946, 37.894735 ], [ -122.208922, 37.895054 ], [ -122.208824, 37.895004 ], [ -122.208725, 37.895078 ], [ -122.208704, 37.895016 ], [ -122.206882, 37.89611 ], [ -122.207129, 37.896375 ], [ -122.2081, 37.897316 ], [ -122.208501, 37.897738 ], [ -122.2086, 37.897646 ], [ -122.209328, 37.898384 ], [ -122.210597, 37.899383 ], [ -122.210792, 37.899499 ], [ -122.210585, 37.899839 ], [ -122.210363, 37.900124 ], [ -122.210264, 37.900083 ], [ -122.21015, 37.900283 ], [ -122.210029, 37.900319 ], [ -122.209835, 37.900435 ], [ -122.209468, 37.900538 ], [ -122.209249, 37.900618 ], [ -122.208751, 37.900884 ], [ -122.208652, 37.900922 ], [ -122.208435, 37.900953 ], [ -122.207786, 37.900923 ], [ -122.207593, 37.900949 ], [ -122.207452, 37.901006 ], [ -122.207257, 37.901152 ], [ -122.207178, 37.901258 ], [ -122.207127, 37.901461 ], [ -122.207087, 37.901721 ], [ -122.207218, 37.901729 ], [ -122.207224, 37.9017 ], [ -122.20828, 37.901643 ], [ -122.20892, 37.901505 ], [ -122.209754, 37.901403 ], [ -122.211421, 37.901454 ], [ -122.21188, 37.901774 ], [ -122.212161, 37.902653 ], [ -122.212428, 37.902856 ], [ -122.213218, 37.903182 ], [ -122.213708, 37.903496 ], [ -122.214091, 37.903903 ], [ -122.210714, 37.905765 ], [ -122.210393, 37.905872 ], [ -122.210645, 37.906092 ], [ -122.210807, 37.906274 ], [ -122.211058, 37.906701 ], [ -122.211129, 37.907251 ], [ -122.211061, 37.90752 ], [ -122.210974, 37.907747 ], [ -122.210796, 37.908038 ], [ -122.210499, 37.908375 ], [ -122.210014, 37.908633 ], [ -122.209585, 37.90878 ], [ -122.209125, 37.908843 ], [ -122.208559, 37.90879 ], [ -122.207969, 37.90867 ], [ -122.206847, 37.908392 ], [ -122.206091, 37.90831 ], [ -122.205692, 37.908304 ], [ -122.20542, 37.908323 ], [ -122.204897, 37.908411 ], [ -122.204402, 37.908661 ], [ -122.204334, 37.908704 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Region 3\",\n        \"group_id\": 62784533,\n        \"geometry_id\": 25049369,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.155711, 37.844008 ], [ -122.148215, 37.86932 ], [ -122.145262, 37.868523 ], [ -122.144251, 37.868521 ], [ -122.142925, 37.867298 ], [ -122.142573, 37.867108 ], [ -122.142938, 37.866602 ], [ -122.142789, 37.866534 ], [ -122.142882, 37.866385 ], [ -122.14323, 37.86591 ], [ -122.143605, 37.866082 ], [ -122.143811, 37.866208 ], [ -122.144288, 37.865644 ], [ -122.144304, 37.86482 ], [ -122.144709, 37.863592 ], [ -122.144347, 37.863073 ], [ -122.144363, 37.862697 ], [ -122.143795, 37.862746 ], [ -122.143681, 37.863385 ], [ -122.142938, 37.863284 ], [ -122.142832, 37.86296 ], [ -122.142643, 37.862561 ], [ -122.142639, 37.862473 ], [ -122.142687, 37.862318 ], [ -122.14278, 37.862167 ], [ -122.142927, 37.862014 ], [ -122.142843, 37.86188 ], [ -122.142501, 37.861552 ], [ -122.142915, 37.861327 ], [ -122.142715, 37.859496 ], [ -122.142702, 37.858577 ], [ -122.142679, 37.858163 ], [ -122.142598, 37.852642 ], [ -122.142062, 37.852312 ], [ -122.14178, 37.85128 ], [ -122.141524, 37.851397 ], [ -122.140702, 37.851016 ], [ -122.140324, 37.851951 ], [ -122.140084, 37.851717 ], [ -122.139887, 37.851241 ], [ -122.139802, 37.85 ], [ -122.139776, 37.849925 ], [ -122.139572, 37.849831 ], [ -122.139444, 37.849036 ], [ -122.140754, 37.848954 ], [ -122.14054, 37.847859 ], [ -122.141627, 37.847382 ], [ -122.14203, 37.847763 ], [ -122.142174, 37.847525 ], [ -122.142496, 37.847268 ], [ -122.142373, 37.846568 ], [ -122.14209, 37.846319 ], [ -122.142046, 37.84625 ], [ -122.141995, 37.845878 ], [ -122.141885, 37.845765 ], [ -122.141781, 37.845429 ], [ -122.141606, 37.845467 ], [ -122.140717, 37.844767 ], [ -122.140599, 37.84459 ], [ -122.140523, 37.844245 ], [ -122.140581, 37.844047 ], [ -122.140726, 37.843759 ], [ -122.140918, 37.843505 ], [ -122.141221, 37.843267 ], [ -122.141641, 37.84298 ], [ -122.141782, 37.843059 ], [ -122.141892, 37.843022 ], [ -122.141936, 37.843082 ], [ -122.141937, 37.843107 ], [ -122.141942, 37.843198 ], [ -122.141917, 37.84326 ], [ -122.141978, 37.84331 ], [ -122.14198, 37.84331 ], [ -122.142017, 37.843362 ], [ -122.142202, 37.843415 ], [ -122.142279, 37.843325 ], [ -122.155711, 37.844008 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Region 4\",\n        \"group_id\": 62784532,\n        \"geometry_id\": 25049368,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.186652, 37.903157 ], [ -122.17228, 37.885149 ], [ -122.187536, 37.880365 ], [ -122.188557, 37.88097 ], [ -122.188921, 37.880925 ], [ -122.189763, 37.881044 ], [ -122.189862, 37.881279 ], [ -122.189957, 37.881439 ], [ -122.191256, 37.882177 ], [ -122.191638, 37.882667 ], [ -122.186652, 37.903157 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Region 5\",\n        \"group_id\": 62784524,\n        \"geometry_id\": 25049361,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.21735, 37.895129 ], [ -122.217263, 37.879367 ], [ -122.220644, 37.881858 ], [ -122.220847, 37.882194 ], [ -122.22112, 37.88271 ], [ -122.221264, 37.883537 ], [ -122.221408, 37.883735 ], [ -122.221538, 37.883872 ], [ -122.22236, 37.884597 ], [ -122.222184, 37.88451 ], [ -122.223191, 37.887009 ], [ -122.224561, 37.889795 ], [ -122.225254, 37.890342 ], [ -122.220923, 37.89297 ], [ -122.220736, 37.893067 ], [ -122.22034, 37.893379 ], [ -122.218995, 37.894142 ], [ -122.21735, 37.895129 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Region 6\",\n        \"group_id\": 62784530,\n        \"geometry_id\": 25049367,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.192076, 37.861314 ], [ -122.180266, 37.864667 ], [ -122.179195, 37.850484 ], [ -122.188586, 37.850433 ], [ -122.188619, 37.852042 ], [ -122.189156, 37.85316 ], [ -122.18951, 37.853395 ], [ -122.190176, 37.854086 ], [ -122.191239, 37.854941 ], [ -122.192917, 37.855716 ], [ -122.193632, 37.855984 ], [ -122.194335, 37.85633 ], [ -122.194987, 37.856713 ], [ -122.193312, 37.858794 ], [ -122.192076, 37.861314 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Region 7\",\n        \"group_id\": 62784529,\n        \"geometry_id\": 25049366,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.180266, 37.864667 ], [ -122.192076, 37.861314 ], [ -122.191377, 37.862739 ], [ -122.192091, 37.862967 ], [ -122.192549, 37.864232 ], [ -122.193298, 37.864548 ], [ -122.193693, 37.864415 ], [ -122.194131, 37.865126 ], [ -122.193941, 37.865562 ], [ -122.194198, 37.865834 ], [ -122.194621, 37.865938 ], [ -122.195204, 37.866193 ], [ -122.19555, 37.866197 ], [ -122.195875, 37.866223 ], [ -122.195994, 37.866013 ], [ -122.196246, 37.866135 ], [ -122.196325, 37.866002 ], [ -122.200463, 37.86661 ], [ -122.200952, 37.866731 ], [ -122.203168, 37.866473 ], [ -122.20341, 37.867603 ], [ -122.202503, 37.867673 ], [ -122.201298, 37.86784 ], [ -122.201146, 37.867901 ], [ -122.201117, 37.867959 ], [ -122.201121, 37.868174 ], [ -122.201857, 37.86819 ], [ -122.202063, 37.868231 ], [ -122.20222, 37.868282 ], [ -122.202368, 37.868354 ], [ -122.20268, 37.868589 ], [ -122.202527, 37.8687 ], [ -122.202353, 37.868554 ], [ -122.202214, 37.868463 ], [ -122.202038, 37.86839 ], [ -122.201897, 37.86836 ], [ -122.199338, 37.868296 ], [ -122.198937, 37.868196 ], [ -122.198245, 37.869322 ], [ -122.196837, 37.868739 ], [ -122.195874, 37.868973 ], [ -122.195461, 37.869746 ], [ -122.194427, 37.869648 ], [ -122.194392, 37.869754 ], [ -122.19427, 37.86997 ], [ -122.194077, 37.870166 ], [ -122.193872, 37.870297 ], [ -122.193511, 37.870423 ], [ -122.193501, 37.870366 ], [ -122.193218, 37.870438 ], [ -122.192975, 37.870546 ], [ -122.192236, 37.871051 ], [ -122.191848, 37.871357 ], [ -122.19195, 37.871495 ], [ -122.192791, 37.873532 ], [ -122.191293, 37.874174 ], [ -122.19115, 37.875001 ], [ -122.191026, 37.875873 ], [ -122.190974, 37.876088 ], [ -122.190727, 37.87621 ], [ -122.191173, 37.877787 ], [ -122.189734, 37.878236 ], [ -122.187233, 37.878144 ], [ -122.18681, 37.878554 ], [ -122.187084, 37.879957 ], [ -122.187176, 37.880151 ], [ -122.187536, 37.880365 ], [ -122.181593, 37.882229 ], [ -122.180266, 37.864667 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Region 8\",\n        \"group_id\": 62784528,\n        \"geometry_id\": 25049365,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.16505, 37.863297 ], [ -122.151645, 37.857737 ], [ -122.155711, 37.844008 ], [ -122.165486, 37.844505 ], [ -122.167779, 37.846487 ], [ -122.170188, 37.846896 ], [ -122.170808, 37.846897 ], [ -122.16505, 37.863297 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Region 9\",\n        \"group_id\": 62784527,\n        \"geometry_id\": 25049364,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.158781, 37.881152 ], [ -122.170808, 37.846897 ], [ -122.174896, 37.846907 ], [ -122.174777, 37.850549 ], [ -122.174886, 37.850507 ], [ -122.179195, 37.850484 ], [ -122.181593, 37.882229 ], [ -122.165012, 37.887428 ], [ -122.164986, 37.884678 ], [ -122.16414, 37.884716 ], [ -122.163793, 37.884398 ], [ -122.163108, 37.883997 ], [ -122.163309, 37.883615 ], [ -122.162742, 37.88333 ], [ -122.162361, 37.883293 ], [ -122.161695, 37.883093 ], [ -122.163238, 37.88113 ], [ -122.158781, 37.881152 ] ] ] ] }\"\n    },\n    {\n        \"name\": \"Test\",\n        \"group_id\": 63412939,\n        \"geometry_id\": 25219953,\n        \"type\": \"area\",\n        \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -122.17228, 37.885149 ], [ -122.186652, 37.903157 ], [ -122.182882, 37.918653 ], [ -122.182423, 37.918726 ], [ -122.182162, 37.9187 ], [ -122.181813, 37.918561 ], [ -122.181284, 37.918422 ], [ -122.180905, 37.918418 ], [ -122.180577, 37.918505 ], [ -122.180573, 37.918543 ], [ -122.178306, 37.91832 ], [ -122.178209, 37.918286 ], [ -122.176956, 37.918144 ], [ -122.176965, 37.918049 ], [ -122.176818, 37.918033 ], [ -122.176316, 37.91769 ], [ -122.17605, 37.917392 ], [ -122.175663, 37.91582 ], [ -122.175535, 37.915764 ], [ -122.175667, 37.915661 ], [ -122.175279, 37.915347 ], [ -122.175027, 37.915543 ], [ -122.174983, 37.915524 ], [ -122.174056, 37.915394 ], [ -122.173193, 37.915522 ], [ -122.172744, 37.915509 ], [ -122.170842, 37.916007 ], [ -122.16987, 37.916062 ], [ -122.166785, 37.917035 ], [ -122.165349, 37.915512 ], [ -122.161925, 37.913925 ], [ -122.161659, 37.913919 ], [ -122.161723, 37.913857 ], [ -122.160988, 37.913522 ], [ -122.161065, 37.913214 ], [ -122.160909, 37.913042 ], [ -122.158477, 37.912121 ], [ -122.156624, 37.911073 ], [ -122.126821, 37.913168 ], [ -122.125855, 37.901085 ], [ -122.165085, 37.897092 ], [ -122.165081, 37.893734 ], [ -122.165053, 37.891963 ], [ -122.164912, 37.891834 ], [ -122.164656, 37.891825 ], [ -122.164644, 37.891098 ], [ -122.164141, 37.891066 ], [ -122.164087, 37.890783 ], [ -122.164136, 37.89047 ], [ -122.164258, 37.890376 ], [ -122.164691, 37.890418 ], [ -122.164942, 37.890571 ], [ -122.165015, 37.890578 ], [ -122.165032, 37.889546 ], [ -122.165012, 37.887428 ], [ -122.17228, 37.885149 ] ] ] ] }\"\n    }\n]"}],"_postman_id":"4c1d7fd1-f9c6-430e-8f20-4d0531016b60"},{"name":"Get agency neighborhood boundary","id":"4066f2f7-2dd5-4547-801a-db113db281cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"http://nextdoor.com/external/api/partner/v1/agency/neighborhood_boundary/?show_geometries=true","description":"<p>Get agency neighborhood boundary (all neighborhood inside of the agency territory)</p>\n","urlObject":{"protocol":"http","path":["external","api","partner","v1","agency","neighborhood_boundary",""],"host":["nextdoor","com"],"query":[{"description":{"content":"<p>Include boundary data or not. Please cache the result and only re-fetch on needed.</p>\n","type":"text/plain"},"key":"show_geometries","value":"true"}],"variable":[]}},"response":[{"id":"7702fc1b-f6c8-4d73-87a2-cde794b39149","name":"Get agency neighborhood boundary","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://nextdoor.com/external/api/partner/v1/agency/neighborhood_boundary/?show_geometries=true","protocol":"http","host":["nextdoor","com"],"path":["external","api","partner","v1","agency","neighborhood_boundary",""],"query":[{"key":"show_geometries","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 01 Sep 2023 16:51:43 GMT"},{"key":"server","value":"istio-envoy"},{"key":"vary","value":"Accept-Encoding,Cookie"},{"key":"x-nextdoor-langpref","value":"en-us"},{"key":"cache-control","value":"no-store"},{"key":"pragma","value":"no-cache"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"content-security-policy","value":"frame-ancestors 'self'"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"x-content-type-options","value":"nosniff"},{"key":"referrer-policy","value":"strict-origin-when-cross-origin"},{"key":"dd-trace-id","value":"6432668041267613332"},{"key":"set-cookie","value":"WERC=7b3278e9-7826-4d62-9a0c-264a6dc7ae532309011693587102; Domain=.nextdoor.com; expires=Fri, 01 Sep 2023 17:21:43 GMT; Max-Age=1800; Path=/; SameSite=Lax; Secure"},{"key":"context-id","value":"e7a67b25-ab86-4624-bb46-e1cf0136ae50"},{"key":"x-amzn-trace-id","value":"Root=1-64f2169e-1a4565954ca01b2a0438e253;ContextID=e7a67b25-ab86-4624-bb46-e1cf0136ae50"},{"key":"strict-transport-security","value":"max-age=0"},{"key":"cache-proxy-status","value":"MISS"},{"key":"content-encoding","value":"gzip"},{"key":"x-envoy-upstream-service-time","value":"412"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b8fa286a637a91a7f38c0cbf622153e6.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SFO53-P4"},{"key":"X-Amz-Cf-Id","value":"bdA-d0zNtZQIf78E-vlixrGdw49iyrk7APE3OqAGSdkA_tsFpEdlKA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"has_next_page\": false,\n    \"cursor\": null,\n    \"result\": [\n        {\n            \"name\": \"Andromeda\",\n            \"group_id\": 31810824,\n            \"geometry_id\": 545391,\n            \"total_members\": null,\n            \"type\": \"neighborhood\",\n            \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -86.463348039531198, 39.702877434419328 ], [ -86.46474097209402, 39.688734752770486 ], [ -86.468866240165283, 39.675135566446109 ], [ -86.475565312006466, 39.662602484550121 ], [ -86.484580746043619, 39.651617146391153 ], [ -86.495566084202579, 39.642601712354008 ], [ -86.508099166098575, 39.635902640512818 ], [ -86.521698352422959, 39.631777372441555 ], [ -86.535841034071794, 39.630384439878732 ], [ -86.549983715720629, 39.631777372441555 ], [ -86.563582902045013, 39.635902640512818 ], [ -86.576115983941008, 39.642601712354008 ], [ -86.587101322099969, 39.651617146391153 ], [ -86.596116756137121, 39.662602484550121 ], [ -86.602815827978304, 39.675135566446109 ], [ -86.606941096049567, 39.688734752770486 ], [ -86.60833402861239, 39.702877434419328 ], [ -86.606941096049567, 39.71702011606817 ], [ -86.602815827978304, 39.730619302392547 ], [ -86.596116756137121, 39.743152384288535 ], [ -86.587101322099969, 39.754137722447503 ], [ -86.576115983941008, 39.763153156484648 ], [ -86.563582902045013, 39.769852228325838 ], [ -86.549983715720629, 39.773977496397102 ], [ -86.535841034071794, 39.775370428959924 ], [ -86.521698352422959, 39.773977496397102 ], [ -86.508099166098575, 39.769852228325838 ], [ -86.495566084202579, 39.763153156484648 ], [ -86.484580746043619, 39.754137722447503 ], [ -86.475565312006466, 39.743152384288535 ], [ -86.468866240165283, 39.730619302392547 ], [ -86.46474097209402, 39.71702011606817 ], [ -86.463348039531198, 39.702877434419328 ] ] ] ] }\"\n        },\n        {\n            \"name\": \"Milky Way\",\n            \"group_id\": 68478,\n            \"geometry_id\": 3,\n            \"total_members\": null,\n            \"type\": \"neighborhood\",\n            \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -116.448652, 43.60782 ], [ -116.450208, 43.607825 ], [ -116.450216, 43.604841 ], [ -116.450995, 43.604843 ], [ -116.450996, 43.604857 ], [ -116.450996, 43.604828 ], [ -116.451773, 43.604834 ], [ -116.451769, 43.606088 ], [ -116.452158, 43.606091 ], [ -116.452162, 43.604837 ], [ -116.452547, 43.60484 ], [ -116.452541, 43.607192 ], [ -116.452881, 43.607195 ], [ -116.45288, 43.607514 ], [ -116.453634, 43.60752 ], [ -116.453634, 43.607523 ], [ -116.453633, 43.607835 ], [ -116.453632, 43.609574 ], [ -116.448648999886743, 43.609504042116342 ], [ -116.448642, 43.612107 ], [ -116.451634, 43.61212 ], [ -116.451639, 43.610967 ], [ -116.453478, 43.610971 ], [ -116.453621, 43.610971 ], [ -116.453624, 43.610037 ], [ -116.453677, 43.610037 ], [ -116.454966, 43.610055 ], [ -116.454958, 43.612178 ], [ -116.45367, 43.61218 ], [ -116.453617, 43.61218 ], [ -116.453625, 43.614454 ], [ -116.453663, 43.614454 ], [ -116.45766, 43.61443 ], [ -116.457664, 43.615746 ], [ -116.456565, 43.615751 ], [ -116.456576, 43.616519 ], [ -116.453657, 43.616528 ], [ -116.453631, 43.616529 ], [ -116.453635, 43.61744 ], [ -116.453654, 43.61744 ], [ -116.453748, 43.617442 ], [ -116.454779, 43.617458 ], [ -116.45497, 43.617461 ], [ -116.455694, 43.617617 ], [ -116.45595, 43.617694 ], [ -116.456595, 43.617854 ], [ -116.45673, 43.617888 ], [ -116.45674, 43.61789 ], [ -116.45675, 43.617893 ], [ -116.457436, 43.618053 ], [ -116.457448, 43.619277 ], [ -116.457448, 43.619336 ], [ -116.457448, 43.619338 ], [ -116.457451, 43.619402 ], [ -116.457451, 43.619404 ], [ -116.457451, 43.619405 ], [ -116.458642, 43.619408 ], [ -116.45864, 43.619476 ], [ -116.458633, 43.621198 ], [ -116.458626, 43.623104 ], [ -116.458625, 43.623328 ], [ -116.458625, 43.623453 ], [ -116.458608, 43.62666 ], [ -116.458609, 43.626678 ], [ -116.461429, 43.626683 ], [ -116.461452, 43.630315 ], [ -116.461442, 43.630315 ], [ -116.462623, 43.631556 ], [ -116.464445, 43.63347 ], [ -116.464442, 43.634096 ], [ -116.463555, 43.634094 ], [ -116.460574, 43.634086 ], [ -116.460571, 43.634086 ], [ -116.45857, 43.634081 ], [ -116.456086, 43.634074 ], [ -116.456074, 43.634663 ], [ -116.456939, 43.634665 ], [ -116.456946, 43.634265 ], [ -116.45838, 43.63425 ], [ -116.458383, 43.637689 ], [ -116.453591, 43.637677 ], [ -116.453588, 43.634068 ], [ -116.450648, 43.634055 ], [ -116.450649, 43.634124 ], [ -116.448627, 43.634115 ], [ -116.448628, 43.634048 ], [ -116.443665, 43.634026 ], [ -116.443643, 43.637566 ], [ -116.443639, 43.637566 ], [ -116.443613, 43.641258 ], [ -116.441157, 43.641249 ], [ -116.440998, 43.640892 ], [ -116.440996, 43.640889 ], [ -116.440992, 43.640883 ], [ -116.44099, 43.640878 ], [ -116.440988, 43.640876 ], [ -116.44098, 43.640865 ], [ -116.440979, 43.640864 ], [ -116.440977, 43.640862 ], [ -116.440969, 43.640855 ], [ -116.440966, 43.640852 ], [ -116.440963, 43.640851 ], [ -116.440951, 43.640842 ], [ -116.44095, 43.640841 ], [ -116.440947, 43.64084 ], [ -116.440937, 43.640835 ], [ -116.440933, 43.640832 ], [ -116.440485, 43.640634 ], [ -116.440371, 43.64058 ], [ -116.440263, 43.640521 ], [ -116.44016, 43.640457 ], [ -116.440063, 43.640389 ], [ -116.43966, 43.640086 ], [ -116.439616, 43.640056 ], [ -116.439569, 43.64003 ], [ -116.439508, 43.639999 ], [ -116.439261, 43.639875 ], [ -116.439259, 43.639874 ], [ -116.439211, 43.639847 ], [ -116.439165, 43.639815 ], [ -116.439123, 43.63978 ], [ -116.439086, 43.639742 ], [ -116.439081, 43.639741 ], [ -116.438974, 43.639719 ], [ -116.438991, 43.63974 ], [ -116.439012, 43.639765 ], [ -116.439055, 43.639809 ], [ -116.439104, 43.63985 ], [ -116.439158, 43.639887 ], [ -116.439217, 43.63992 ], [ -116.439524, 43.640074 ], [ -116.439566, 43.640096 ], [ -116.439603, 43.640123 ], [ -116.440009, 43.640427 ], [ -116.44011, 43.640497 ], [ -116.440216, 43.640563 ], [ -116.440217, 43.640563 ], [ -116.440329, 43.640624 ], [ -116.440446, 43.640681 ], [ -116.440891, 43.640878 ], [ -116.4409, 43.640882 ], [ -116.440901, 43.640882 ], [ -116.440908, 43.640887 ], [ -116.440909, 43.640887 ], [ -116.440915, 43.640893 ], [ -116.44092, 43.6409 ], [ -116.440924, 43.640908 ], [ -116.441076, 43.641249 ], [ -116.438619, 43.641241 ], [ -116.438615, 43.641824 ], [ -116.436519, 43.641815 ], [ -116.435954, 43.641569 ], [ -116.433711, 43.641563 ], [ -116.433686, 43.643938 ], [ -116.436093, 43.643946 ], [ -116.436085, 43.644845 ], [ -116.43848, 43.64486 ], [ -116.441192, 43.644874 ], [ -116.441263, 43.644874 ], [ -116.443592, 43.644886 ], [ -116.443599, 43.644886 ], [ -116.443576, 43.648192 ], [ -116.443575, 43.648448 ], [ -116.443572, 43.648514 ], [ -116.443576, 43.648516 ], [ -116.444839, 43.648515 ], [ -116.444841, 43.650287 ], [ -116.446107, 43.650291 ], [ -116.44611, 43.650358 ], [ -116.446108, 43.652087 ], [ -116.446108, 43.652101 ], [ -116.448346, 43.652106 ], [ -116.448347, 43.652106 ], [ -116.448603, 43.652106 ], [ -116.448605, 43.650299 ], [ -116.451101, 43.650306 ], [ -116.451102, 43.649402 ], [ -116.451102, 43.648508 ], [ -116.453598, 43.648505 ], [ -116.454575, 43.648508 ], [ -116.454578, 43.648436 ], [ -116.454578, 43.648042 ], [ -116.453696, 43.648039 ], [ -116.453598, 43.648042 ], [ -116.453596, 43.646324 ], [ -116.453695, 43.646317 ], [ -116.45453, 43.646304 ], [ -116.454654, 43.645468 ], [ -116.453692, 43.645465 ], [ -116.453596, 43.645467 ], [ -116.453596, 43.644895 ], [ -116.444909, 43.644886 ], [ -116.443597, 43.644885 ], [ -116.443618, 43.641255 ], [ -116.447885, 43.641269 ], [ -116.447887, 43.64127 ], [ -116.448608, 43.641273 ], [ -116.448608, 43.641202 ], [ -116.448694, 43.641146 ], [ -116.448776, 43.641087 ], [ -116.449569, 43.640475 ], [ -116.449664, 43.640407 ], [ -116.449765, 43.640344 ], [ -116.449871, 43.640285 ], [ -116.449983, 43.640233 ], [ -116.450099, 43.640185 ], [ -116.45022, 43.640144 ], [ -116.450344, 43.640109 ], [ -116.450471, 43.640079 ], [ -116.450601, 43.640057 ], [ -116.450732, 43.64004 ], [ -116.450865, 43.64003 ], [ -116.450998, 43.640027 ], [ -116.453222, 43.640026 ], [ -116.4533, 43.639969 ], [ -116.4533, 43.639752 ], [ -116.453595, 43.639752 ], [ -116.453596, 43.641288 ], [ -116.453597, 43.642523 ], [ -116.453594, 43.642523 ], [ -116.453594, 43.642536 ], [ -116.453736, 43.642546 ], [ -116.453904, 43.642576 ], [ -116.454475, 43.642731 ], [ -116.455732, 43.643299 ], [ -116.457, 43.643858 ], [ -116.457204, 43.643932 ], [ -116.457452, 43.643969 ], [ -116.458574, 43.643921 ], [ -116.458576, 43.643886 ], [ -116.459516, 43.643838 ], [ -116.462742, 43.643774 ], [ -116.463433, 43.643785 ], [ -116.463555, 43.643787 ], [ -116.463556, 43.643787 ], [ -116.463556, 43.642731 ], [ -116.463556, 43.641315 ], [ -116.467506, 43.641325 ], [ -116.468118, 43.641327 ], [ -116.470122, 43.641332 ], [ -116.473515, 43.641341 ], [ -116.473515, 43.64134 ], [ -116.473519, 43.64134 ], [ -116.473519, 43.637731 ], [ -116.473514, 43.637729 ], [ -116.473515, 43.634117 ], [ -116.473529, 43.634117 ], [ -116.473529, 43.634121 ], [ -116.473529, 43.634122 ], [ -116.473763, 43.634123 ], [ -116.478521, 43.634136 ], [ -116.478522, 43.635223 ], [ -116.480193, 43.635723 ], [ -116.480195, 43.634141 ], [ -116.482122, 43.634146 ], [ -116.483529, 43.63415 ], [ -116.483509, 43.641363 ], [ -116.483504, 43.643124 ], [ -116.4835, 43.643124 ], [ -116.483505, 43.643125 ], [ -116.483498, 43.645476 ], [ -116.483496, 43.646091 ], [ -116.483488, 43.648583 ], [ -116.476151, 43.648569 ], [ -116.476152, 43.648226 ], [ -116.475586, 43.648225 ], [ -116.475584, 43.648568 ], [ -116.473508, 43.648564 ], [ -116.473507, 43.648564 ], [ -116.473463, 43.652143 ], [ -116.473467, 43.652145 ], [ -116.473442, 43.654269 ], [ -116.473437, 43.654269 ], [ -116.473419, 43.655727 ], [ -116.473329, 43.655727 ], [ -116.471062, 43.655727 ], [ -116.471063, 43.655773 ], [ -116.471049, 43.65687 ], [ -116.47341, 43.656875 ], [ -116.473387, 43.658769 ], [ -116.471649, 43.658361 ], [ -116.469465, 43.658042 ], [ -116.468632, 43.657487 ], [ -116.468455, 43.65752 ], [ -116.46845, 43.658113 ], [ -116.467456, 43.658305 ], [ -116.467427, 43.658306 ], [ -116.467398, 43.658309 ], [ -116.467371, 43.658316 ], [ -116.467346, 43.658327 ], [ -116.466546, 43.658482 ], [ -116.466542, 43.662589 ], [ -116.467495, 43.66232 ], [ -116.467663, 43.662512 ], [ -116.467687, 43.662544 ], [ -116.467706, 43.662577 ], [ -116.46772, 43.662612 ], [ -116.467728, 43.662648 ], [ -116.467727, 43.662991 ], [ -116.468495, 43.662991 ], [ -116.468488, 43.666604 ], [ -116.463469, 43.666601 ], [ -116.458544, 43.666591 ], [ -116.458537, 43.666591 ], [ -116.458534, 43.666568 ], [ -116.458532, 43.668579 ], [ -116.457707, 43.668687 ], [ -116.456697, 43.668818 ], [ -116.456694, 43.668819 ], [ -116.456506, 43.668897 ], [ -116.45359, 43.670123 ], [ -116.453038, 43.670337 ], [ -116.451963, 43.670607 ], [ -116.451364, 43.670731 ], [ -116.451065, 43.670788 ], [ -116.451089, 43.670832 ], [ -116.451047, 43.67084 ], [ -116.450462, 43.67091 ], [ -116.449281, 43.671059 ], [ -116.448805, 43.671128 ], [ -116.448656, 43.671149 ], [ -116.448241, 43.671224 ], [ -116.447888, 43.671275 ], [ -116.447491, 43.671298 ], [ -116.447059, 43.671287 ], [ -116.446511, 43.671203 ], [ -116.44624, 43.671173 ], [ -116.445999, 43.671162 ], [ -116.445279, 43.671087 ], [ -116.44528, 43.671047 ], [ -116.445281, 43.670932 ], [ -116.445278, 43.670931 ], [ -116.445278, 43.670929 ], [ -116.443837, 43.670701 ], [ -116.443554, 43.670548 ], [ -116.44329, 43.670526 ], [ -116.443253, 43.670523 ], [ -116.443237, 43.670522 ], [ -116.443097, 43.670511 ], [ -116.441495, 43.67038 ], [ -116.441145, 43.670352 ], [ -116.440884, 43.670332 ], [ -116.44088, 43.670359 ], [ -116.44088, 43.670457 ], [ -116.440716, 43.670454 ], [ -116.440551, 43.670454 ], [ -116.440387, 43.670457 ], [ -116.440329, 43.670459 ], [ -116.439896, 43.670475 ], [ -116.439406, 43.670494 ], [ -116.439078, 43.670506 ], [ -116.438915, 43.670514 ], [ -116.438722, 43.670531 ], [ -116.438644, 43.670541 ], [ -116.43853, 43.670555 ], [ -116.438354, 43.670583 ], [ -116.43834, 43.670585 ], [ -116.438159, 43.670622 ], [ -116.438153, 43.670623 ], [ -116.437968, 43.670667 ], [ -116.437437, 43.67081 ], [ -116.43719, 43.670876 ], [ -116.437054, 43.670911 ], [ -116.436917, 43.670941 ], [ -116.436778, 43.670968 ], [ -116.436777, 43.670968 ], [ -116.436637, 43.67099 ], [ -116.43647, 43.671012 ], [ -116.436202, 43.671042 ], [ -116.435673, 43.671101 ], [ -116.435239, 43.671149 ], [ -116.43494, 43.671183 ], [ -116.43471, 43.671215 ], [ -116.434162, 43.671321 ], [ -116.433612, 43.671429 ], [ -116.433612, 43.6714 ], [ -116.433612, 43.671241 ], [ -116.433611, 43.671241 ], [ -116.433612, 43.670144 ], [ -116.433601, 43.66653 ], [ -116.434828, 43.666533 ], [ -116.434828, 43.66644 ], [ -116.435017, 43.66644 ], [ -116.435048, 43.666438 ], [ -116.435079, 43.666432 ], [ -116.43509, 43.666428 ], [ -116.435101, 43.666424 ], [ -116.435108, 43.666422 ], [ -116.435112, 43.66642 ], [ -116.435135, 43.666408 ], [ -116.435157, 43.666392 ], [ -116.435176, 43.666374 ], [ -116.43519, 43.666354 ], [ -116.435199, 43.666332 ], [ -116.435203, 43.666309 ], [ -116.435201, 43.666286 ], [ -116.435195, 43.666264 ], [ -116.435184, 43.666243 ], [ -116.435183, 43.666243 ], [ -116.435167, 43.666223 ], [ -116.435147, 43.666206 ], [ -116.435123, 43.666191 ], [ -116.435096, 43.66618 ], [ -116.435066, 43.666172 ], [ -116.435055, 43.666168 ], [ -116.435045, 43.666163 ], [ -116.435037, 43.666157 ], [ -116.435029, 43.666151 ], [ -116.435022, 43.666144 ], [ -116.435017, 43.666136 ], [ -116.435014, 43.666128 ], [ -116.435012, 43.666119 ], [ -116.435008, 43.664061 ], [ -116.43501, 43.664027 ], [ -116.435017, 43.663994 ], [ -116.435024, 43.663971 ], [ -116.435031, 43.663957 ], [ -116.435032, 43.663953 ], [ -116.435038, 43.66394 ], [ -116.435039, 43.663939 ], [ -116.43504, 43.663937 ], [ -116.435041, 43.663935 ], [ -116.435042, 43.663933 ], [ -116.435043, 43.663931 ], [ -116.435044, 43.66393 ], [ -116.435045, 43.663928 ], [ -116.435046, 43.663926 ], [ -116.435047, 43.663924 ], [ -116.435048, 43.663923 ], [ -116.435049, 43.663921 ], [ -116.43505, 43.663919 ], [ -116.435051, 43.663917 ], [ -116.435052, 43.663916 ], [ -116.435052, 43.663915 ], [ -116.435053, 43.663914 ], [ -116.435054, 43.663912 ], [ -116.435055, 43.663912 ], [ -116.435056, 43.66391 ], [ -116.435057, 43.663909 ], [ -116.435057, 43.663908 ], [ -116.435058, 43.663907 ], [ -116.435059, 43.663905 ], [ -116.43506, 43.663904 ], [ -116.43506, 43.663903 ], [ -116.435062, 43.663902 ], [ -116.435063, 43.6639 ], [ -116.435064, 43.663898 ], [ -116.435065, 43.663897 ], [ -116.435065, 43.663896 ], [ -116.435066, 43.663895 ], [ -116.435067, 43.663895 ], [ -116.435068, 43.663893 ], [ -116.435069, 43.663892 ], [ -116.435069, 43.663891 ], [ -116.43507, 43.66389 ], [ -116.435071, 43.66389 ], [ -116.435072, 43.663888 ], [ -116.435073, 43.663887 ], [ -116.435073, 43.663886 ], [ -116.435074, 43.663885 ], [ -116.435077, 43.663882 ], [ -116.435081, 43.663878 ], [ -116.435083, 43.663875 ], [ -116.435084, 43.663874 ], [ -116.435086, 43.663872 ], [ -116.435089, 43.663869 ], [ -116.435092, 43.663865 ], [ -116.435133, 43.663828 ], [ -116.43518, 43.663795 ], [ -116.435181, 43.663795 ], [ -116.435234, 43.663768 ], [ -116.435292, 43.663746 ], [ -116.435341, 43.663728 ], [ -116.435389, 43.663708 ], [ -116.435391, 43.663707 ], [ -116.435394, 43.663706 ], [ -116.435397, 43.663704 ], [ -116.435399, 43.663703 ], [ -116.435402, 43.663702 ], [ -116.435404, 43.6637 ], [ -116.435407, 43.663699 ], [ -116.435427, 43.663688 ], [ -116.435441, 43.66368 ], [ -116.43546, 43.663669 ], [ -116.435475, 43.663659 ], [ -116.435495, 43.663645 ], [ -116.435509, 43.663635 ], [ -116.435517, 43.663628 ], [ -116.435549, 43.663601 ], [ -116.435557, 43.663594 ], [ -116.435563, 43.663588 ], [ -116.435593, 43.663554 ], [ -116.435598, 43.663549 ], [ -116.435601, 43.663544 ], [ -116.435629, 43.663505 ], [ -116.435632, 43.663501 ], [ -116.435634, 43.663498 ], [ -116.435657, 43.663452 ], [ -116.435658, 43.663451 ], [ -116.435659, 43.663449 ], [ -116.435677, 43.663398 ], [ -116.435678, 43.663394 ], [ -116.435679, 43.663391 ], [ -116.435681, 43.663379 ], [ -116.435682, 43.663375 ], [ -116.435687, 43.66334 ], [ -116.435689, 43.663305 ], [ -116.435689, 43.663195 ], [ -116.435689, 43.663034 ], [ -116.435688, 43.662923 ], [ -116.434665, 43.66292 ], [ -116.434665, 43.66303 ], [ -116.434668, 43.663955 ], [ -116.433594, 43.663951 ], [ -116.433594, 43.663808 ], [ -116.43348, 43.663809 ], [ -116.433479, 43.6638 ], [ -116.433476, 43.663791 ], [ -116.433471, 43.663782 ], [ -116.433464, 43.663775 ], [ -116.433456, 43.663768 ], [ -116.433446, 43.663763 ], [ -116.433435, 43.663758 ], [ -116.433423, 43.663756 ], [ -116.433423, 43.663755 ], [ -116.433411, 43.663754 ], [ -116.43341, 43.663754 ], [ -116.433398, 43.663754 ], [ -116.433386, 43.663756 ], [ -116.432815, 43.663863 ], [ -116.432814, 43.663863 ], [ -116.432812, 43.664141 ], [ -116.432811, 43.664314 ], [ -116.432493, 43.66556 ], [ -116.432649, 43.665581 ], [ -116.432502, 43.666157 ], [ -116.432494, 43.667172 ], [ -116.432351, 43.667269 ], [ -116.432331, 43.667199 ], [ -116.432316, 43.66716 ], [ -116.432294, 43.667122 ], [ -116.432265, 43.667088 ], [ -116.43223, 43.667056 ], [ -116.43234, 43.666968 ], [ -116.432347, 43.666129 ], [ -116.431951, 43.666074 ], [ -116.431521, 43.665914 ], [ -116.431154, 43.665696 ], [ -116.430737, 43.665377 ], [ -116.430321, 43.665059 ], [ -116.429651, 43.664691 ], [ -116.428553, 43.664666 ], [ -116.42781, 43.665053 ], [ -116.427532, 43.665462 ], [ -116.427388, 43.665766 ], [ -116.428081, 43.666292 ], [ -116.428082, 43.666293 ], [ -116.428091, 43.666298 ], [ -116.428101, 43.666303 ], [ -116.428115, 43.666307 ], [ -116.428132, 43.666309 ], [ -116.428147, 43.666308 ], [ -116.428159, 43.666306 ], [ -116.428169, 43.666303 ], [ -116.42817, 43.666303 ], [ -116.428171, 43.666302 ], [ -116.428173, 43.666302 ], [ -116.428175, 43.666301 ], [ -116.428177, 43.666299 ], [ -116.428179, 43.666299 ], [ -116.428182, 43.666297 ], [ -116.428185, 43.666295 ], [ -116.428185, 43.666298 ], [ -116.428183, 43.6663 ], [ -116.428181, 43.666303 ], [ -116.42818, 43.666304 ], [ -116.428178, 43.666305 ], [ -116.428177, 43.666307 ], [ -116.428175, 43.666309 ], [ -116.428174, 43.66631 ], [ -116.428171, 43.666313 ], [ -116.428169, 43.666315 ], [ -116.428168, 43.666315 ], [ -116.428167, 43.666316 ], [ -116.428165, 43.666318 ], [ -116.428163, 43.66632 ], [ -116.428163, 43.666321 ], [ -116.42816, 43.666324 ], [ -116.428158, 43.666326 ], [ -116.428157, 43.666326 ], [ -116.428155, 43.666328 ], [ -116.428153, 43.66633 ], [ -116.428152, 43.666331 ], [ -116.428149, 43.666333 ], [ -116.428149, 43.666334 ], [ -116.428148, 43.666336 ], [ -116.428146, 43.666336 ], [ -116.428145, 43.666338 ], [ -116.428144, 43.666339 ], [ -116.428143, 43.66634 ], [ -116.428142, 43.666341 ], [ -116.42814, 43.666342 ], [ -116.428139, 43.666343 ], [ -116.428139, 43.666344 ], [ -116.428136, 43.666346 ], [ -116.428135, 43.666347 ], [ -116.428133, 43.666349 ], [ -116.428131, 43.66635 ], [ -116.42813, 43.666352 ], [ -116.428129, 43.666352 ], [ -116.428127, 43.666354 ], [ -116.428126, 43.666355 ], [ -116.428125, 43.666356 ], [ -116.428123, 43.666358 ], [ -116.428121, 43.666359 ], [ -116.42812, 43.66636 ], [ -116.428119, 43.666361 ], [ -116.428118, 43.666362 ], [ -116.428117, 43.666363 ], [ -116.428115, 43.666365 ], [ -116.428114, 43.666365 ], [ -116.428113, 43.666366 ], [ -116.42811, 43.666368 ], [ -116.428109, 43.666369 ], [ -116.428108, 43.66637 ], [ -116.428107, 43.666371 ], [ -116.428106, 43.666373 ], [ -116.428104, 43.666373 ], [ -116.428103, 43.666375 ], [ -116.428102, 43.666376 ], [ -116.428101, 43.666376 ], [ -116.428099, 43.666378 ], [ -116.428098, 43.666379 ], [ -116.428097, 43.666379 ], [ -116.428096, 43.666381 ], [ -116.428095, 43.666381 ], [ -116.428094, 43.666382 ], [ -116.428093, 43.666383 ], [ -116.428092, 43.666383 ], [ -116.428091, 43.666385 ], [ -116.428088, 43.666387 ], [ -116.428087, 43.666387 ], [ -116.428085, 43.666389 ], [ -116.428084, 43.66639 ], [ -116.428083, 43.666391 ], [ -116.428081, 43.666392 ], [ -116.42808, 43.666393 ], [ -116.428079, 43.666394 ], [ -116.428077, 43.666395 ], [ -116.428076, 43.666396 ], [ -116.428074, 43.666398 ], [ -116.428073, 43.666398 ], [ -116.428071, 43.6664 ], [ -116.42807, 43.666401 ], [ -116.428067, 43.666403 ], [ -116.428064, 43.666405 ], [ -116.428063, 43.666406 ], [ -116.428061, 43.666408 ], [ -116.42806, 43.666408 ], [ -116.428058, 43.66641 ], [ -116.428057, 43.666411 ], [ -116.428054, 43.666413 ], [ -116.428051, 43.666415 ], [ -116.42805, 43.666416 ], [ -116.428047, 43.666418 ], [ -116.428045, 43.66642 ], [ -116.428044, 43.66642 ], [ -116.428042, 43.666422 ], [ -116.428041, 43.666423 ], [ -116.428038, 43.666425 ], [ -116.428035, 43.666426 ], [ -116.428032, 43.666428 ], [ -116.428029, 43.66643 ], [ -116.428029, 43.666431 ], [ -116.428026, 43.666433 ], [ -116.428023, 43.666435 ], [ -116.428022, 43.666436 ], [ -116.42802, 43.666437 ], [ -116.428017, 43.666439 ], [ -116.428015, 43.666441 ], [ -116.428012, 43.666443 ], [ -116.42801, 43.666444 ], [ -116.428007, 43.666446 ], [ -116.428006, 43.666446 ], [ -116.428004, 43.666447 ], [ -116.428003, 43.666448 ], [ -116.428002, 43.666449 ], [ -116.428, 43.666451 ], [ -116.427997, 43.666453 ], [ -116.427994, 43.666454 ], [ -116.427993, 43.666455 ], [ -116.427982, 43.666462 ], [ -116.427981, 43.666463 ], [ -116.427978, 43.666464 ], [ -116.427975, 43.666466 ], [ -116.427972, 43.666468 ], [ -116.42797, 43.66647 ], [ -116.427967, 43.666471 ], [ -116.427966, 43.666472 ], [ -116.427959, 43.666476 ], [ -116.427956, 43.666478 ], [ -116.427954, 43.666479 ], [ -116.427953, 43.66648 ], [ -116.427948, 43.666483 ], [ -116.427946, 43.666484 ], [ -116.427943, 43.666485 ], [ -116.427942, 43.666486 ], [ -116.42794, 43.666487 ], [ -116.427939, 43.666488 ], [ -116.427936, 43.66649 ], [ -116.427935, 43.66649 ], [ -116.42793, 43.666493 ], [ -116.427928, 43.666494 ], [ -116.427926, 43.666496 ], [ -116.427924, 43.666496 ], [ -116.427922, 43.666497 ], [ -116.427921, 43.666498 ], [ -116.427918, 43.6665 ], [ -116.427917, 43.6665 ], [ -116.427915, 43.666501 ], [ -116.427913, 43.666502 ], [ -116.427912, 43.666502 ], [ -116.427909, 43.666504 ], [ -116.427909, 43.666505 ], [ -116.427906, 43.666506 ], [ -116.427904, 43.666507 ], [ -116.427903, 43.666508 ], [ -116.427901, 43.666509 ], [ -116.427899, 43.666509 ], [ -116.427896, 43.666511 ], [ -116.427894, 43.666513 ], [ -116.427892, 43.666513 ], [ -116.427889, 43.666515 ], [ -116.427899, 43.666432 ], [ -116.427205, 43.665904 ], [ -116.427203, 43.665903 ], [ -116.427202, 43.665902 ], [ -116.427201, 43.665901 ], [ -116.4272, 43.6659 ], [ -116.427198, 43.665899 ], [ -116.427197, 43.665898 ], [ -116.427195, 43.665896 ], [ -116.427192, 43.665894 ], [ -116.427191, 43.665893 ], [ -116.427189, 43.665891 ], [ -116.427188, 43.66589 ], [ -116.427187, 43.665889 ], [ -116.427186, 43.665888 ], [ -116.427184, 43.665886 ], [ -116.427183, 43.665885 ], [ -116.427181, 43.665883 ], [ -116.427179, 43.665881 ], [ -116.427177, 43.665879 ], [ -116.427175, 43.665877 ], [ -116.427174, 43.665876 ], [ -116.427172, 43.665874 ], [ -116.427171, 43.665873 ], [ -116.42717, 43.665872 ], [ -116.427168, 43.665869 ], [ -116.427167, 43.665868 ], [ -116.427166, 43.665867 ], [ -116.427166, 43.665866 ], [ -116.427165, 43.665865 ], [ -116.427164, 43.665863 ], [ -116.427163, 43.665862 ], [ -116.427162, 43.665861 ], [ -116.427161, 43.66586 ], [ -116.42716, 43.665859 ], [ -116.427159, 43.665858 ], [ -116.427159, 43.665857 ], [ -116.427158, 43.665856 ], [ -116.427157, 43.665855 ], [ -116.427157, 43.665854 ], [ -116.427154, 43.665851 ], [ -116.427154, 43.66585 ], [ -116.427153, 43.665849 ], [ -116.427152, 43.665848 ], [ -116.427151, 43.665846 ], [ -116.42715, 43.665844 ], [ -116.42715, 43.665843 ], [ -116.427149, 43.665843 ], [ -116.427148, 43.665841 ], [ -116.427147, 43.665839 ], [ -116.427146, 43.665838 ], [ -116.427145, 43.665836 ], [ -116.427145, 43.665835 ], [ -116.427144, 43.665834 ], [ -116.427143, 43.665832 ], [ -116.427142, 43.66583 ], [ -116.427046, 43.66563 ], [ -116.427064, 43.663465 ], [ -116.429611, 43.663888 ], [ -116.431501, 43.66369 ], [ -116.431773, 43.663706 ], [ -116.432634, 43.663755 ], [ -116.433347, 43.663621 ], [ -116.433359, 43.663618 ], [ -116.433369, 43.663614 ], [ -116.433378, 43.663609 ], [ -116.433379, 43.663609 ], [ -116.433387, 43.663603 ], [ -116.433393, 43.663596 ], [ -116.433394, 43.663596 ], [ -116.433399, 43.663588 ], [ -116.433402, 43.66358 ], [ -116.433404, 43.663574 ], [ -116.433404, 43.663568 ], [ -116.433403, 43.663081 ], [ -116.433401, 43.663071 ], [ -116.433398, 43.663062 ], [ -116.433393, 43.663054 ], [ -116.433385, 43.663046 ], [ -116.433376, 43.663039 ], [ -116.433366, 43.663034 ], [ -116.433354, 43.66303 ], [ -116.433341, 43.663027 ], [ -116.433328, 43.663026 ], [ -116.433328, 43.663025 ], [ -116.433329, 43.66292 ], [ -116.428627, 43.662896 ], [ -116.428627, 43.662787 ], [ -116.428627, 43.662483 ], [ -116.428629, 43.661825 ], [ -116.428629, 43.661287 ], [ -116.428627, 43.66045 ], [ -116.428357, 43.660329 ], [ -116.428015, 43.660231 ], [ -116.4279, 43.660199 ], [ -116.427784, 43.660171 ], [ -116.427549, 43.660116 ], [ -116.427294, 43.660107 ], [ -116.427142, 43.660101 ], [ -116.427177, 43.66289 ], [ -116.426093, 43.662886 ], [ -116.426092, 43.662994 ], [ -116.426059, 43.662996 ], [ -116.426027, 43.663002 ], [ -116.425997, 43.663012 ], [ -116.42597, 43.663026 ], [ -116.425947, 43.663042 ], [ -116.425928, 43.663062 ], [ -116.425927, 43.663062 ], [ -116.425913, 43.663083 ], [ -116.425913, 43.663084 ], [ -116.425905, 43.663107 ], [ -116.425902, 43.66313 ], [ -116.425899, 43.66346 ], [ -116.425875, 43.664049 ], [ -116.425865, 43.665193 ], [ -116.425869, 43.66528 ], [ -116.425882, 43.665366 ], [ -116.425905, 43.665451 ], [ -116.425936, 43.665534 ], [ -116.425936, 43.665535 ], [ -116.425976, 43.665616 ], [ -116.426024, 43.665695 ], [ -116.425688, 43.665694 ], [ -116.425704, 43.665699 ], [ -116.425719, 43.665706 ], [ -116.42572, 43.665706 ], [ -116.425733, 43.665715 ], [ -116.425744, 43.665726 ], [ -116.425753, 43.665737 ], [ -116.42581, 43.665822 ], [ -116.425811, 43.665822 ], [ -116.425876, 43.665903 ], [ -116.425949, 43.66598 ], [ -116.42603, 43.666054 ], [ -116.426184, 43.666184 ], [ -116.426232, 43.666226 ], [ -116.426255, 43.666248 ], [ -116.426278, 43.666269 ], [ -116.426278, 43.66627 ], [ -116.4263, 43.666291 ], [ -116.426322, 43.666314 ], [ -116.426343, 43.666336 ], [ -116.426343, 43.666337 ], [ -116.426364, 43.666359 ], [ -116.426383, 43.666382 ], [ -116.426384, 43.666382 ], [ -116.426384, 43.666383 ], [ -116.426403, 43.666406 ], [ -116.426422, 43.666429 ], [ -116.42644, 43.666453 ], [ -116.426458, 43.666477 ], [ -116.426475, 43.666501 ], [ -116.426475, 43.666502 ], [ -116.426491, 43.666526 ], [ -116.426492, 43.666526 ], [ -116.426508, 43.666551 ], [ -116.426523, 43.666576 ], [ -116.426538, 43.666601 ], [ -116.426552, 43.666626 ], [ -116.426565, 43.666652 ], [ -116.426578, 43.666677 ], [ -116.426591, 43.666703 ], [ -116.426602, 43.666729 ], [ -116.426613, 43.666755 ], [ -116.426624, 43.666781 ], [ -116.426634, 43.666807 ], [ -116.426634, 43.666808 ], [ -116.426643, 43.666834 ], [ -116.426651, 43.666861 ], [ -116.426659, 43.666887 ], [ -116.426659, 43.666888 ], [ -116.426667, 43.666914 ], [ -116.426673, 43.666941 ], [ -116.426679, 43.666968 ], [ -116.426684, 43.666995 ], [ -116.426689, 43.667022 ], [ -116.426693, 43.667049 ], [ -116.426729, 43.667173 ], [ -116.425707, 43.667246 ], [ -116.425767, 43.66769 ], [ -116.425906, 43.66819 ], [ -116.42616, 43.668666 ], [ -116.42652, 43.669103 ], [ -116.426978, 43.669491 ], [ -116.427518, 43.669816 ], [ -116.428172, 43.670086 ], [ -116.428644, 43.670501 ], [ -116.428782, 43.670623 ], [ -116.42887, 43.670701 ], [ -116.428644, 43.670763 ], [ -116.428542, 43.670791 ], [ -116.428268, 43.670638 ], [ -116.428055, 43.67054 ], [ -116.427894, 43.670387 ], [ -116.427752, 43.670391 ], [ -116.427639, 43.670355 ], [ -116.427503, 43.670234 ], [ -116.427473, 43.670184 ], [ -116.427443, 43.670134 ], [ -116.427375, 43.670152 ], [ -116.427363, 43.670154 ], [ -116.427351, 43.670155 ], [ -116.427338, 43.670155 ], [ -116.427326, 43.670153 ], [ -116.427314, 43.67015 ], [ -116.427303, 43.670145 ], [ -116.427294, 43.670139 ], [ -116.427286, 43.670132 ], [ -116.42728, 43.670124 ], [ -116.427275, 43.670116 ], [ -116.427272, 43.670107 ], [ -116.427199, 43.670123 ], [ -116.427127, 43.670138 ], [ -116.42713, 43.670147 ], [ -116.427132, 43.670156 ], [ -116.427133, 43.670165 ], [ -116.427131, 43.670174 ], [ -116.427128, 43.670182 ], [ -116.427122, 43.67019 ], [ -116.427115, 43.670198 ], [ -116.427106, 43.670204 ], [ -116.427096, 43.670209 ], [ -116.427084, 43.670213 ], [ -116.427072, 43.670216 ], [ -116.427031, 43.670222 ], [ -116.426925, 43.670233 ], [ -116.426924, 43.670233 ], [ -116.426817, 43.670239 ], [ -116.426766, 43.670242 ], [ -116.42654, 43.669648 ], [ -116.426225, 43.669207 ], [ -116.425785, 43.668829 ], [ -116.425451, 43.668485 ], [ -116.425228, 43.668245 ], [ -116.425091, 43.667969 ], [ -116.425053, 43.667667 ], [ -116.425057, 43.667268 ], [ -116.42506, 43.666869 ], [ -116.423919, 43.666864 ], [ -116.42392, 43.666578 ], [ -116.42392, 43.66655 ], [ -116.423924, 43.666501 ], [ -116.423806, 43.666497 ], [ -116.422511, 43.6665 ], [ -116.422511, 43.666501 ], [ -116.417247, 43.666511 ], [ -116.417268, 43.664032 ], [ -116.4156, 43.664017 ], [ -116.415596, 43.664555 ], [ -116.413729, 43.664547 ], [ -116.41373, 43.664416 ], [ -116.413726, 43.662892 ], [ -116.413726, 43.662884 ], [ -116.403639, 43.662883 ], [ -116.403639, 43.662863 ], [ -116.403639, 43.662855 ], [ -116.403638, 43.662855 ], [ -116.403638, 43.662863 ], [ -116.403439, 43.662866 ], [ -116.402497, 43.66288 ], [ -116.402259, 43.66288 ], [ -116.402258, 43.66288 ], [ -116.402248, 43.66288 ], [ -116.401998, 43.662881 ], [ -116.401843, 43.662882 ], [ -116.400761, 43.662881 ], [ -116.400136, 43.662883 ], [ -116.400131, 43.662883 ], [ -116.400131, 43.662871 ], [ -116.399575, 43.662872 ], [ -116.399356, 43.662872 ], [ -116.398636, 43.662872 ], [ -116.393557, 43.662876 ], [ -116.393558, 43.662877 ], [ -116.39167, 43.662884 ], [ -116.389394, 43.662892 ], [ -116.389394, 43.662782 ], [ -116.389395, 43.661675 ], [ -116.389396, 43.661068 ], [ -116.389322, 43.661069 ], [ -116.386905, 43.661081 ], [ -116.38442, 43.661091 ], [ -116.384407, 43.661617 ], [ -116.384401, 43.661617 ], [ -116.384411, 43.662906 ], [ -116.383012, 43.662911 ], [ -116.382112, 43.662913 ], [ -116.380299, 43.662918 ], [ -116.379552, 43.66292 ], [ -116.379429, 43.662921 ], [ -116.379428, 43.662818 ], [ -116.378728, 43.662821 ], [ -116.378543, 43.662822 ], [ -116.377254, 43.662826 ], [ -116.377254, 43.662827 ], [ -116.377254, 43.66283 ], [ -116.37507, 43.662835 ], [ -116.374585, 43.662836 ], [ -116.374548, 43.662837 ], [ -116.37453, 43.662836 ], [ -116.374344, 43.662838 ], [ -116.374341, 43.662947 ], [ -116.374245, 43.662947 ], [ -116.374243, 43.662947 ], [ -116.37422, 43.662947 ], [ -116.374218, 43.662947 ], [ -116.374217, 43.662947 ], [ -116.374215, 43.662947 ], [ -116.374213, 43.662947 ], [ -116.374211, 43.662947 ], [ -116.37421, 43.662947 ], [ -116.374194, 43.662947 ], [ -116.374192, 43.662947 ], [ -116.37419, 43.662947 ], [ -116.374188, 43.662947 ], [ -116.374186, 43.662947 ], [ -116.374184, 43.662947 ], [ -116.374183, 43.662947 ], [ -116.374181, 43.662947 ], [ -116.374179, 43.662947 ], [ -116.374178, 43.662947 ], [ -116.374169, 43.662947 ], [ -116.374167, 43.662947 ], [ -116.374166, 43.662947 ], [ -116.374164, 43.662947 ], [ -116.374162, 43.662947 ], [ -116.37416, 43.662947 ], [ -116.374158, 43.662947 ], [ -116.374156, 43.662947 ], [ -116.374154, 43.662947 ], [ -116.374152, 43.662947 ], [ -116.37415, 43.662947 ], [ -116.374149, 43.662947 ], [ -116.374147, 43.662947 ], [ -116.374143, 43.662947 ], [ -116.374141, 43.662947 ], [ -116.374139, 43.662947 ], [ -116.374137, 43.662947 ], [ -116.374135, 43.662947 ], [ -116.374133, 43.662947 ], [ -116.374132, 43.662947 ], [ -116.37413, 43.662947 ], [ -116.374128, 43.662947 ], [ -116.374126, 43.662947 ], [ -116.374124, 43.662947 ], [ -116.374122, 43.662947 ], [ -116.37412, 43.662947 ], [ -116.374118, 43.662947 ], [ -116.374116, 43.662947 ], [ -116.374114, 43.662947 ], [ -116.374113, 43.662947 ], [ -116.374111, 43.662947 ], [ -116.374109, 43.662947 ], [ -116.374107, 43.662947 ], [ -116.374105, 43.662947 ], [ -116.374103, 43.662947 ], [ -116.374101, 43.662947 ], [ -116.374099, 43.662947 ], [ -116.374097, 43.662947 ], [ -116.374096, 43.662947 ], [ -116.374094, 43.662947 ], [ -116.374092, 43.662947 ], [ -116.37409, 43.662947 ], [ -116.374088, 43.662947 ], [ -116.374086, 43.662947 ], [ -116.374084, 43.662947 ], [ -116.374082, 43.662947 ], [ -116.37408, 43.662947 ], [ -116.374078, 43.662947 ], [ -116.374077, 43.662947 ], [ -116.374075, 43.662947 ], [ -116.374073, 43.662947 ], [ -116.374071, 43.662947 ], [ -116.374069, 43.662947 ], [ -116.374067, 43.662947 ], [ -116.374065, 43.662947 ], [ -116.374063, 43.662947 ], [ -116.374061, 43.662947 ], [ -116.374059, 43.662947 ], [ -116.374058, 43.662947 ], [ -116.374056, 43.662947 ], [ -116.374054, 43.662947 ], [ -116.374052, 43.662947 ], [ -116.37405, 43.662947 ], [ -116.374048, 43.662947 ], [ -116.374046, 43.662947 ], [ -116.374044, 43.662947 ], [ -116.374042, 43.662947 ], [ -116.374041, 43.662947 ], [ -116.374039, 43.662947 ], [ -116.374037, 43.662947 ], [ -116.374035, 43.662947 ], [ -116.374033, 43.662947 ], [ -116.374031, 43.662947 ], [ -116.374029, 43.662947 ], [ -116.374027, 43.662947 ], [ -116.374025, 43.662947 ], [ -116.374023, 43.662947 ], [ -116.374022, 43.662947 ], [ -116.37402, 43.662947 ], [ -116.374018, 43.662947 ], [ -116.374016, 43.662947 ], [ -116.374014, 43.662947 ], [ -116.374012, 43.662947 ], [ -116.37401, 43.662947 ], [ -116.374008, 43.662947 ], [ -116.374006, 43.662947 ], [ -116.374005, 43.662947 ], [ -116.374003, 43.662947 ], [ -116.374001, 43.662947 ], [ -116.373999, 43.662947 ], [ -116.373997, 43.662947 ], [ -116.373995, 43.662947 ], [ -116.373993, 43.662947 ], [ -116.373991, 43.662947 ], [ -116.373989, 43.662947 ], [ -116.373987, 43.662947 ], [ -116.373986, 43.662947 ], [ -116.373984, 43.662947 ], [ -116.373982, 43.662946 ], [ -116.369443, 43.662941 ], [ -116.369443, 43.662924 ], [ -116.369448, 43.662832 ], [ -116.369448, 43.661999 ], [ -116.369448, 43.661844 ], [ -116.369448, 43.661531 ], [ -116.369448, 43.661252 ], [ -116.369448, 43.660663 ], [ -116.369449, 43.660409 ], [ -116.36945, 43.660034 ], [ -116.36945, 43.659378 ], [ -116.36942, 43.659378 ], [ -116.369141, 43.659378 ], [ -116.368906, 43.659378 ], [ -116.368904, 43.659378 ], [ -116.368865, 43.659378 ], [ -116.368861, 43.659307 ], [ -116.368737, 43.659261 ], [ -116.368655, 43.659235 ], [ -116.36784, 43.659233 ], [ -116.36784, 43.659254 ], [ -116.367841, 43.659288 ], [ -116.367841, 43.659309 ], [ -116.367803, 43.659309 ], [ -116.367566, 43.659309 ], [ -116.367195, 43.659309 ], [ -116.365683, 43.65931 ], [ -116.364987, 43.65931 ], [ -116.364966, 43.65931 ], [ -116.364453, 43.65931 ], [ -116.364462, 43.655693 ], [ -116.364482, 43.648485 ], [ -116.364465, 43.648485 ], [ -116.364466, 43.648283 ], [ -116.364466, 43.648272 ], [ -116.361957, 43.648289 ], [ -116.361962, 43.646793 ], [ -116.361963, 43.646542 ], [ -116.359452, 43.646557 ], [ -116.359456, 43.644748 ], [ -116.359456, 43.644738 ], [ -116.357205, 43.644751 ], [ -116.357204, 43.64475 ], [ -116.356926, 43.644592 ], [ -116.356917, 43.644587 ], [ -116.356917, 43.644582 ], [ -116.356922, 43.642327 ], [ -116.357334, 43.642325 ], [ -116.357342, 43.642325 ], [ -116.357346, 43.642325 ], [ -116.357346, 43.642223 ], [ -116.357346, 43.642195 ], [ -116.357346, 43.642191 ], [ -116.357346, 43.642185 ], [ -116.357346, 43.642157 ], [ -116.35734, 43.641422 ], [ -116.357339, 43.641272 ], [ -116.357337, 43.64113 ], [ -116.357337, 43.64112 ], [ -116.357337, 43.641115 ], [ -116.358322, 43.641112 ], [ -116.358317, 43.640161 ], [ -116.356188, 43.640167 ], [ -116.356186, 43.640167 ], [ -116.356188, 43.639298 ], [ -116.356192, 43.639298 ], [ -116.356205, 43.639297 ], [ -116.356192, 43.639297 ], [ -116.356144, 43.639297 ], [ -116.355839, 43.639298 ], [ -116.355827, 43.639298 ], [ -116.355709, 43.639298 ], [ -116.355647, 43.639298 ], [ -116.355642, 43.639298 ], [ -116.355642, 43.639299 ], [ -116.355641, 43.639299 ], [ -116.355266, 43.6393 ], [ -116.355181, 43.6393 ], [ -116.354542, 43.639301 ], [ -116.354546, 43.638683 ], [ -116.354547, 43.638007 ], [ -116.354548, 43.637773 ], [ -116.354548, 43.637622 ], [ -116.354548, 43.637571 ], [ -116.354548, 43.637492 ], [ -116.354548, 43.637482 ], [ -116.350213, 43.637495 ], [ -116.349865, 43.637496 ], [ -116.349434, 43.637498 ], [ -116.349435, 43.637008 ], [ -116.349435, 43.636734 ], [ -116.349441, 43.633859 ], [ -116.349442, 43.633859 ], [ -116.350069, 43.633857 ], [ -116.350069, 43.633733 ], [ -116.349825, 43.633734 ], [ -116.349745, 43.633677 ], [ -116.349745, 43.63358 ], [ -116.349745, 43.633579 ], [ -116.349745, 43.633561 ], [ -116.349744, 43.633555 ], [ -116.349744, 43.633549 ], [ -116.349743, 43.633542 ], [ -116.349743, 43.633541 ], [ -116.349743, 43.633537 ], [ -116.349742, 43.633535 ], [ -116.349742, 43.633532 ], [ -116.349742, 43.633531 ], [ -116.349742, 43.633529 ], [ -116.349741, 43.633524 ], [ -116.349741, 43.633523 ], [ -116.349741, 43.633521 ], [ -116.349741, 43.63352 ], [ -116.34974, 43.633517 ], [ -116.34974, 43.633514 ], [ -116.349739, 43.63351 ], [ -116.349739, 43.633509 ], [ -116.349739, 43.633508 ], [ -116.349738, 43.633505 ], [ -116.349738, 43.633504 ], [ -116.349738, 43.633502 ], [ -116.349737, 43.6335 ], [ -116.349737, 43.633499 ], [ -116.349737, 43.633497 ], [ -116.349736, 43.633494 ], [ -116.349736, 43.633493 ], [ -116.349736, 43.633492 ], [ -116.349735, 43.633488 ], [ -116.349735, 43.633487 ], [ -116.349734, 43.633484 ], [ -116.349734, 43.633482 ], [ -116.349733, 43.63348 ], [ -116.349733, 43.633478 ], [ -116.349733, 43.633477 ], [ -116.349732, 43.633474 ], [ -116.349731, 43.633469 ], [ -116.34973, 43.633468 ], [ -116.34973, 43.633466 ], [ -116.349682, 43.633284 ], [ -116.349661, 43.6332 ], [ -116.349661, 43.633199 ], [ -116.34966, 43.633195 ], [ -116.34966, 43.633194 ], [ -116.349659, 43.633189 ], [ -116.349659, 43.633188 ], [ -116.349658, 43.633184 ], [ -116.349658, 43.633183 ], [ -116.349658, 43.633182 ], [ -116.349657, 43.633176 ], [ -116.349657, 43.633175 ], [ -116.349657, 43.633173 ], [ -116.349656, 43.633167 ], [ -116.349656, 43.633166 ], [ -116.349655, 43.633161 ], [ -116.349655, 43.633148 ], [ -116.349655, 43.633146 ], [ -116.349655, 43.633138 ], [ -116.349655, 43.632897 ], [ -116.34966, 43.63176 ], [ -116.349663, 43.631232 ], [ -116.349663, 43.631054 ], [ -116.349665, 43.630682 ], [ -116.349665, 43.630677 ], [ -116.349663, 43.630383 ], [ -116.349662, 43.630321 ], [ -116.349662, 43.630315 ], [ -116.34946, 43.630313 ], [ -116.34946, 43.630036 ], [ -116.349463, 43.629405 ], [ -116.349466, 43.628507 ], [ -116.344502, 43.628531 ], [ -116.344502, 43.628585 ], [ -116.344426, 43.628586 ], [ -116.344418, 43.630336 ], [ -116.344425, 43.632455 ], [ -116.344424, 43.632628 ], [ -116.344425, 43.632702 ], [ -116.344423, 43.632949 ], [ -116.344422, 43.633012 ], [ -116.345188, 43.63301 ], [ -116.345183, 43.633736 ], [ -116.345183, 43.633802 ], [ -116.345183, 43.633803 ], [ -116.345183, 43.633812 ], [ -116.345182, 43.633872 ], [ -116.345117, 43.633872 ], [ -116.343221, 43.633876 ], [ -116.340972, 43.633881 ], [ -116.340972, 43.633879 ], [ -116.340971, 43.633822 ], [ -116.34097, 43.633813 ], [ -116.34097, 43.633812 ], [ -116.340969, 43.63375 ], [ -116.340966, 43.633654 ], [ -116.340958, 43.633404 ], [ -116.340949, 43.633097 ], [ -116.340947, 43.633016 ], [ -116.340933, 43.633016 ], [ -116.340758, 43.633017 ], [ -116.340569, 43.633017 ], [ -116.34038, 43.633017 ], [ -116.340401, 43.633791 ], [ -116.339414, 43.633794 ], [ -116.339413, 43.633794 ], [ -116.339419, 43.632262 ], [ -116.339432, 43.630356 ], [ -116.339442, 43.628535 ], [ -116.33944, 43.626715 ], [ -116.343211, 43.626704 ], [ -116.343211, 43.626696 ], [ -116.344453, 43.626693 ], [ -116.344455, 43.626693 ], [ -116.344457, 43.62599 ], [ -116.344458, 43.625829 ], [ -116.344458, 43.625761 ], [ -116.344458, 43.625611 ], [ -116.344459, 43.625531 ], [ -116.344459, 43.625488 ], [ -116.344459, 43.625456 ], [ -116.344459, 43.625449 ], [ -116.344459, 43.625279 ], [ -116.344461, 43.624803 ], [ -116.344463, 43.624231 ], [ -116.344466, 43.623086 ], [ -116.344352, 43.623086 ], [ -116.343914, 43.623087 ], [ -116.343468, 43.623088 ], [ -116.342985, 43.623089 ], [ -116.34245, 43.62309 ], [ -116.341961, 43.623092 ], [ -116.34196, 43.622454 ], [ -116.341958, 43.621656 ], [ -116.341955, 43.620265 ], [ -116.341106, 43.620264 ], [ -116.340564, 43.620264 ], [ -116.340565, 43.619625 ], [ -116.340565, 43.619622 ], [ -116.340563, 43.61946 ], [ -116.341808, 43.619463 ], [ -116.341807, 43.619335 ], [ -116.341833, 43.619263 ], [ -116.34188, 43.619132 ], [ -116.342071, 43.618602 ], [ -116.342089, 43.617078 ], [ -116.342089, 43.617077 ], [ -116.342089, 43.617073 ], [ -116.34209, 43.616962 ], [ -116.342089, 43.616953 ], [ -116.342085, 43.616943 ], [ -116.34208, 43.616934 ], [ -116.342072, 43.616926 ], [ -116.342063, 43.616919 ], [ -116.342052, 43.616914 ], [ -116.34204, 43.616909 ], [ -116.342028, 43.616907 ], [ -116.342014, 43.616906 ], [ -116.34085, 43.616896 ], [ -116.340838, 43.616897 ], [ -116.340827, 43.616899 ], [ -116.340816, 43.616902 ], [ -116.340806, 43.616906 ], [ -116.340781, 43.616916 ], [ -116.340753, 43.616924 ], [ -116.340724, 43.616928 ], [ -116.340695, 43.616929 ], [ -116.340694, 43.616929 ], [ -116.340665, 43.616927 ], [ -116.340637, 43.616921 ], [ -116.34061, 43.616912 ], [ -116.340585, 43.6169 ], [ -116.340565, 43.616885 ], [ -116.340547, 43.616868 ], [ -116.340534, 43.61685 ], [ -116.340524, 43.61683 ], [ -116.340519, 43.616809 ], [ -116.340518, 43.616788 ], [ -116.340521, 43.616773 ], [ -116.340528, 43.616752 ], [ -116.34054, 43.616732 ], [ -116.340551, 43.616719 ], [ -116.340552, 43.616717 ], [ -116.340553, 43.616715 ], [ -116.340559, 43.616707 ], [ -116.340562, 43.616698 ], [ -116.340564, 43.616688 ], [ -116.340564, 43.616623 ], [ -116.340564, 43.61655 ], [ -116.340564, 43.61652 ], [ -116.340565, 43.616241 ], [ -116.340564, 43.616225 ], [ -116.340573, 43.616176 ], [ -116.340586, 43.61614 ], [ -116.340605, 43.616104 ], [ -116.340661, 43.616012 ], [ -116.340705, 43.615939 ], [ -116.340723, 43.615908 ], [ -116.340737, 43.615882 ], [ -116.340745, 43.615855 ], [ -116.340747, 43.615827 ], [ -116.340747, 43.615826 ], [ -116.339471, 43.615822 ], [ -116.339472, 43.615796 ], [ -116.339472, 43.615757 ], [ -116.33947, 43.615381 ], [ -116.33947, 43.615364 ], [ -116.33947, 43.615336 ], [ -116.339469, 43.615144 ], [ -116.339469, 43.614966 ], [ -116.339469, 43.614788 ], [ -116.339468, 43.614254 ], [ -116.339468, 43.614076 ], [ -116.339469, 43.613898 ], [ -116.339468, 43.613694 ], [ -116.339468, 43.613321 ], [ -116.339468, 43.613272 ], [ -116.33947, 43.612815 ], [ -116.339471, 43.612678 ], [ -116.339473, 43.612189 ], [ -116.33948, 43.611928 ], [ -116.33948, 43.61192 ], [ -116.339484, 43.611785 ], [ -116.339498, 43.608615 ], [ -116.339499, 43.608445 ], [ -116.339499, 43.608441 ], [ -116.340565, 43.608457 ], [ -116.34138, 43.60847 ], [ -116.341395, 43.604919 ], [ -116.339546, 43.604913 ], [ -116.339513, 43.604913 ], [ -116.339515, 43.604798 ], [ -116.3395, 43.603431 ], [ -116.339861, 43.603467 ], [ -116.341334, 43.603694 ], [ -116.34167, 43.603621 ], [ -116.342073, 43.603354 ], [ -116.342168, 43.603038 ], [ -116.341205, 43.601923 ], [ -116.339497, 43.599978 ], [ -116.339481, 43.599949 ], [ -116.339474, 43.599067 ], [ -116.339936, 43.597626 ], [ -116.339981, 43.597627 ], [ -116.339997, 43.59758 ], [ -116.34, 43.59757 ], [ -116.339954, 43.59757 ], [ -116.339996, 43.59744 ], [ -116.339921, 43.59744 ], [ -116.340088, 43.597017 ], [ -116.340165, 43.597017 ], [ -116.340169, 43.597017 ], [ -116.340177, 43.59698 ], [ -116.340179, 43.596967 ], [ -116.340578, 43.595656 ], [ -116.340634, 43.595489 ], [ -116.340635, 43.595489 ], [ -116.340636, 43.595489 ], [ -116.341139, 43.593988 ], [ -116.34449, 43.594003 ], [ -116.344492, 43.59401 ], [ -116.344492, 43.593999 ], [ -116.349544, 43.594025 ], [ -116.349497, 43.591592 ], [ -116.348239, 43.591586 ], [ -116.348249, 43.59038 ], [ -116.344446, 43.590363 ], [ -116.344447, 43.590431 ], [ -116.344447, 43.590445 ], [ -116.344448, 43.590494 ], [ -116.344448, 43.590533 ], [ -116.344452, 43.590875 ], [ -116.343279, 43.59087 ], [ -116.343186, 43.590869 ], [ -116.343179, 43.590357 ], [ -116.341793, 43.59035 ], [ -116.339402, 43.590339 ], [ -116.339396, 43.590339 ], [ -116.339401, 43.590271 ], [ -116.339401, 43.590216 ], [ -116.339401, 43.590208 ], [ -116.339401, 43.590206 ], [ -116.339399, 43.588161 ], [ -116.339399, 43.58816 ], [ -116.338689, 43.588157 ], [ -116.338566, 43.587498 ], [ -116.338391, 43.587255 ], [ -116.336905, 43.586203 ], [ -116.334381, 43.584895 ], [ -116.334385, 43.583351 ], [ -116.334386, 43.583155 ], [ -116.334387, 43.583015 ], [ -116.33447, 43.583015 ], [ -116.334481, 43.583015 ], [ -116.334568, 43.583016 ], [ -116.334681, 43.583017 ], [ -116.334793, 43.583017 ], [ -116.335179, 43.58302 ], [ -116.335333, 43.582883 ], [ -116.335344, 43.582874 ], [ -116.335432, 43.582796 ], [ -116.335786, 43.582483 ], [ -116.336032, 43.582399 ], [ -116.336127, 43.582366 ], [ -116.336243, 43.582374 ], [ -116.336266, 43.582376 ], [ -116.336567, 43.582397 ], [ -116.336891, 43.58242 ], [ -116.337185, 43.582441 ], [ -116.337516, 43.582464 ], [ -116.337671, 43.582475 ], [ -116.337846, 43.582488 ], [ -116.338183, 43.582511 ], [ -116.338505, 43.582534 ], [ -116.338831, 43.582557 ], [ -116.339156, 43.58258 ], [ -116.339392, 43.582597 ], [ -116.339481, 43.582603 ], [ -116.339939, 43.582635 ], [ -116.340015, 43.582641 ], [ -116.340143, 43.582639 ], [ -116.34052, 43.582635 ], [ -116.34052, 43.582634 ], [ -116.34052, 43.582631 ], [ -116.340507, 43.579387 ], [ -116.342926, 43.579398 ], [ -116.343028, 43.579399 ], [ -116.343442, 43.5794 ], [ -116.344292, 43.579403 ], [ -116.344387, 43.579403 ], [ -116.34448, 43.579403 ], [ -116.346, 43.579406 ], [ -116.346001, 43.577912 ], [ -116.346001, 43.577911 ], [ -116.346, 43.577832 ], [ -116.345992, 43.575788 ], [ -116.345991, 43.57575 ], [ -116.346931, 43.575747 ], [ -116.346934, 43.575747 ], [ -116.346934, 43.575786 ], [ -116.346934, 43.575796 ], [ -116.346903, 43.576194 ], [ -116.346904, 43.576449 ], [ -116.347125, 43.576449 ], [ -116.347125, 43.576451 ], [ -116.347126, 43.576662 ], [ -116.34713, 43.577584 ], [ -116.348256, 43.577584 ], [ -116.348257, 43.577788 ], [ -116.349389, 43.577788 ], [ -116.349381, 43.575728 ], [ -116.348973, 43.575728 ], [ -116.348979, 43.573393 ], [ -116.34898, 43.572961 ], [ -116.348871, 43.572902 ], [ -116.348698, 43.572808 ], [ -116.348982, 43.572099 ], [ -116.344375, 43.572094 ], [ -116.344381, 43.568458 ], [ -116.349392, 43.568468 ], [ -116.3494, 43.566655 ], [ -116.349397, 43.566655 ], [ -116.347123, 43.566648 ], [ -116.345674, 43.566647 ], [ -116.344388, 43.566638 ], [ -116.344388, 43.566634 ], [ -116.344384, 43.566645 ], [ -116.34438, 43.568463 ], [ -116.342544, 43.568458 ], [ -116.342513, 43.568422 ], [ -116.342488, 43.568384 ], [ -116.34247, 43.568344 ], [ -116.342181, 43.567598 ], [ -116.342156, 43.567543 ], [ -116.342123, 43.567491 ], [ -116.342082, 43.567442 ], [ -116.342035, 43.567397 ], [ -116.341981, 43.567355 ], [ -116.341921, 43.567318 ], [ -116.341624, 43.567152 ], [ -116.341556, 43.56711 ], [ -116.341495, 43.567064 ], [ -116.34144, 43.567013 ], [ -116.341392, 43.566959 ], [ -116.341353, 43.566901 ], [ -116.341321, 43.566841 ], [ -116.341297, 43.566779 ], [ -116.341254, 43.566636 ], [ -116.341244, 43.566602 ], [ -116.34037, 43.566702 ], [ -116.340315, 43.566702 ], [ -116.340314, 43.567331 ], [ -116.340951, 43.567688 ], [ -116.34095, 43.568454 ], [ -116.339369, 43.56845 ], [ -116.339375, 43.56481 ], [ -116.33938, 43.564806 ], [ -116.339387, 43.561169 ], [ -116.339386, 43.561169 ], [ -116.339383, 43.557537 ], [ -116.339384, 43.557537 ], [ -116.339381, 43.554044 ], [ -116.339381, 43.553908 ], [ -116.340692, 43.553904 ], [ -116.341877, 43.553901 ], [ -116.341882, 43.553901 ], [ -116.341886, 43.553901 ], [ -116.341881, 43.550265 ], [ -116.341881, 43.550262 ], [ -116.344205, 43.550253 ], [ -116.344375, 43.550253 ], [ -116.34437, 43.546744 ], [ -116.344371, 43.546607 ], [ -116.344496, 43.546606 ], [ -116.344371, 43.546605 ], [ -116.344389, 43.542886 ], [ -116.344395, 43.542886 ], [ -116.344414, 43.539234 ], [ -116.35434, 43.539206 ], [ -116.35436, 43.540908 ], [ -116.354591, 43.540985 ], [ -116.354641, 43.541038 ], [ -116.354764, 43.541091 ], [ -116.355015, 43.541153 ], [ -116.355224, 43.541215 ], [ -116.3554, 43.541317 ], [ -116.355712, 43.541533 ], [ -116.355938, 43.541653 ], [ -116.356246, 43.541801 ], [ -116.35638, 43.541851 ], [ -116.356549, 43.541852 ], [ -116.357566, 43.541528 ], [ -116.357791, 43.541513 ], [ -116.358743, 43.541492 ], [ -116.358961, 43.541464 ], [ -116.359109, 43.541427 ], [ -116.359256, 43.541412 ], [ -116.359463, 43.541439 ], [ -116.359676, 43.54151 ], [ -116.359676, 43.541463 ], [ -116.359904, 43.541539 ], [ -116.360945, 43.542254 ], [ -116.363374, 43.54154 ], [ -116.363649, 43.541321 ], [ -116.364354, 43.541419 ], [ -116.364331, 43.539162 ], [ -116.365828, 43.539157 ], [ -116.368109, 43.53915 ], [ -116.368111, 43.53915 ], [ -116.3681, 43.538231 ], [ -116.368145, 43.538232 ], [ -116.369326, 43.538227 ], [ -116.369394, 43.538224 ], [ -116.36946, 43.538213 ], [ -116.369523, 43.538195 ], [ -116.369582, 43.538171 ], [ -116.369636, 43.538142 ], [ -116.369683, 43.538106 ], [ -116.369723, 43.538067 ], [ -116.369755, 43.538023 ], [ -116.370224, 43.537251 ], [ -116.370239, 43.537231 ], [ -116.370258, 43.537213 ], [ -116.370282, 43.537198 ], [ -116.370309, 43.537185 ], [ -116.370338, 43.537176 ], [ -116.370369, 43.537171 ], [ -116.370401, 43.53717 ], [ -116.370432, 43.537172 ], [ -116.370463, 43.537178 ], [ -116.371669, 43.53751 ], [ -116.374192, 43.5375 ], [ -116.3743, 43.537499 ], [ -116.374258, 43.534237 ], [ -116.374163, 43.534177 ], [ -116.37366, 43.533889 ], [ -116.37211, 43.533234 ], [ -116.371813, 43.533225 ], [ -116.369833, 43.531979 ], [ -116.369623, 43.531863 ], [ -116.371766, 43.531871 ], [ -116.374267, 43.531843 ], [ -116.37875, 43.531854 ], [ -116.384251, 43.531882 ], [ -116.384259, 43.531948 ], [ -116.384272, 43.533727 ], [ -116.384293, 43.535521 ], [ -116.389314, 43.535533 ], [ -116.389313, 43.536068 ], [ -116.389311, 43.537041 ], [ -116.389311, 43.537393 ], [ -116.3893, 43.539163 ], [ -116.390628, 43.539166 ], [ -116.393634, 43.539174 ], [ -116.393635, 43.539174 ], [ -116.393863, 43.539172 ], [ -116.393853, 43.540183 ], [ -116.393534, 43.540187 ], [ -116.393078, 43.540191 ], [ -116.393079, 43.540054 ], [ -116.392361, 43.540059 ], [ -116.392357, 43.540471 ], [ -116.39351, 43.540462 ], [ -116.393851, 43.540457 ], [ -116.393832, 43.542342 ], [ -116.394021, 43.542319 ], [ -116.395167, 43.54218 ], [ -116.395562, 43.542044 ], [ -116.395987, 43.541827 ], [ -116.396315, 43.542019 ], [ -116.396476, 43.542285 ], [ -116.397285, 43.542618 ], [ -116.397284, 43.542664 ], [ -116.397283, 43.542821 ], [ -116.396288, 43.542811 ], [ -116.396272, 43.544306 ], [ -116.39625, 43.546301 ], [ -116.39625, 43.54635 ], [ -116.396258, 43.546433 ], [ -116.398801, 43.546449 ], [ -116.398801, 43.546448 ], [ -116.398896, 43.546449 ], [ -116.398899, 43.546358 ], [ -116.39891, 43.544643 ], [ -116.400064, 43.544651 ], [ -116.400438, 43.544654 ], [ -116.401226, 43.54466 ], [ -116.401327, 43.544664 ], [ -116.401323, 43.543533 ], [ -116.401328, 43.542939 ], [ -116.401327, 43.542862 ], [ -116.403854, 43.542885 ], [ -116.403834, 43.544679 ], [ -116.402568, 43.54467 ], [ -116.40256, 43.546382 ], [ -116.40256, 43.546472 ], [ -116.403813, 43.54648 ], [ -116.403813, 43.546548 ], [ -116.40381, 43.549536 ], [ -116.403809, 43.550121 ], [ -116.403807, 43.551631 ], [ -116.403808, 43.551697 ], [ -116.403804, 43.553762 ], [ -116.403806, 43.557406 ], [ -116.405355, 43.557408 ], [ -116.406989, 43.557409 ], [ -116.40881, 43.557425 ], [ -116.408804, 43.558866 ], [ -116.408803, 43.559227 ], [ -116.408797, 43.560977 ], [ -116.408798, 43.561048 ], [ -116.408796, 43.561114 ], [ -116.408796, 43.562211 ], [ -116.408796, 43.56468 ], [ -116.410696, 43.564682 ], [ -116.412996, 43.566548 ], [ -116.413114, 43.566636 ], [ -116.413251, 43.566695 ], [ -116.413429, 43.566739 ], [ -116.413692, 43.566762 ], [ -116.41371, 43.566768 ], [ -116.413721, 43.56832 ], [ -116.413738, 43.571957 ], [ -116.41377, 43.571957 ], [ -116.413756, 43.575593 ], [ -116.408777, 43.575582 ], [ -116.408775, 43.575582 ], [ -116.407645, 43.575579 ], [ -116.405953, 43.575573 ], [ -116.405953, 43.575575 ], [ -116.403795, 43.57557 ], [ -116.403794, 43.57557 ], [ -116.403757, 43.579225 ], [ -116.403759, 43.579208 ], [ -116.406251, 43.579216 ], [ -116.406254, 43.579216 ], [ -116.408206, 43.57922 ], [ -116.408205, 43.579285 ], [ -116.408212, 43.57935 ], [ -116.408228, 43.579414 ], [ -116.408252, 43.579477 ], [ -116.408284, 43.579538 ], [ -116.408324, 43.579596 ], [ -116.408372, 43.579652 ], [ -116.408426, 43.579703 ], [ -116.408487, 43.579751 ], [ -116.408554, 43.579795 ], [ -116.408627, 43.579833 ], [ -116.408642, 43.579838 ], [ -116.4087, 43.579859 ], [ -116.4087, 43.57986 ], [ -116.408756, 43.579884 ], [ -116.40877, 43.57989 ], [ -116.408777, 43.579893 ], [ -116.408779, 43.579893 ], [ -116.408792, 43.579898 ], [ -116.408794, 43.579898 ], [ -116.408805, 43.579902 ], [ -116.408806, 43.579902 ], [ -116.408819, 43.579906 ], [ -116.40882, 43.579907 ], [ -116.408834, 43.579911 ], [ -116.408847, 43.579915 ], [ -116.408861, 43.579919 ], [ -116.408862, 43.57992 ], [ -116.408874, 43.579923 ], [ -116.408875, 43.579924 ], [ -116.408888, 43.579928 ], [ -116.408891, 43.579928 ], [ -116.408902, 43.579932 ], [ -116.408903, 43.579932 ], [ -116.408916, 43.579936 ], [ -116.408917, 43.579936 ], [ -116.408931, 43.57994 ], [ -116.408945, 43.579944 ], [ -116.408946, 43.579944 ], [ -116.40896, 43.579948 ], [ -116.408961, 43.579948 ], [ -116.408976, 43.579952 ], [ -116.408978, 43.579953 ], [ -116.408989, 43.579956 ], [ -116.408992, 43.579956 ], [ -116.408999, 43.579958 ], [ -116.409006, 43.57996 ], [ -116.409008, 43.579961 ], [ -116.409012, 43.579962 ], [ -116.409021, 43.579964 ], [ -116.409022, 43.579964 ], [ -116.409034, 43.579967 ], [ -116.409037, 43.579968 ], [ -116.409039, 43.579969 ], [ -116.409052, 43.579972 ], [ -116.409053, 43.579972 ], [ -116.40906, 43.579974 ], [ -116.409067, 43.579975 ], [ -116.409068, 43.579975 ], [ -116.409073, 43.579977 ], [ -116.409083, 43.579979 ], [ -116.409085, 43.579979 ], [ -116.40909, 43.579981 ], [ -116.409097, 43.579982 ], [ -116.409099, 43.579983 ], [ -116.409106, 43.579984 ], [ -116.409114, 43.579986 ], [ -116.409115, 43.579986 ], [ -116.40912, 43.579987 ], [ -116.409129, 43.579989 ], [ -116.40913, 43.579989 ], [ -116.409141, 43.579992 ], [ -116.409145, 43.579993 ], [ -116.409148, 43.579993 ], [ -116.40916, 43.579996 ], [ -116.409161, 43.579996 ], [ -116.409168, 43.579998 ], [ -116.409175, 43.579999 ], [ -116.409176, 43.579999 ], [ -116.409182, 43.58 ], [ -116.409191, 43.580002 ], [ -116.409193, 43.580003 ], [ -116.409198, 43.580003 ], [ -116.409205, 43.580005 ], [ -116.409207, 43.580005 ], [ -116.409208, 43.580005 ], [ -116.409216, 43.580007 ], [ -116.409223, 43.580008 ], [ -116.409224, 43.580008 ], [ -116.409228, 43.580009 ], [ -116.409238, 43.580011 ], [ -116.409239, 43.580011 ], [ -116.40925, 43.580013 ], [ -116.409254, 43.580014 ], [ -116.409255, 43.580014 ], [ -116.409258, 43.580015 ], [ -116.40927, 43.580017 ], [ -116.409277, 43.580018 ], [ -116.409285, 43.580019 ], [ -116.409286, 43.58002 ], [ -116.409292, 43.58002 ], [ -116.409301, 43.580022 ], [ -116.409303, 43.580022 ], [ -116.40931, 43.580023 ], [ -116.409317, 43.580025 ], [ -116.409326, 43.580026 ], [ -116.409333, 43.580027 ], [ -116.409334, 43.580027 ], [ -116.409338, 43.580028 ], [ -116.409348, 43.58003 ], [ -116.409349, 43.58003 ], [ -116.409359, 43.580031 ], [ -116.409364, 43.580032 ], [ -116.409365, 43.580032 ], [ -116.409368, 43.580032 ], [ -116.40938, 43.580034 ], [ -116.409381, 43.580034 ], [ -116.409388, 43.580035 ], [ -116.409395, 43.580036 ], [ -116.409397, 43.580036 ], [ -116.409403, 43.580037 ], [ -116.409412, 43.580038 ], [ -116.409414, 43.580039 ], [ -116.40942, 43.58004 ], [ -116.409428, 43.580041 ], [ -116.409438, 43.580042 ], [ -116.409444, 43.580043 ], [ -116.409445, 43.580043 ], [ -116.409448, 43.580043 ], [ -116.40946, 43.580044 ], [ -116.40946, 43.580045 ], [ -116.40947, 43.580046 ], [ -116.409476, 43.580046 ], [ -116.40948, 43.580047 ], [ -116.409492, 43.580048 ], [ -116.409499, 43.580049 ], [ -116.409507, 43.58005 ], [ -116.409508, 43.58005 ], [ -116.409515, 43.580051 ], [ -116.409524, 43.580051 ], [ -116.409525, 43.580052 ], [ -116.409532, 43.580052 ], [ -116.40954, 43.580053 ], [ -116.409551, 43.580054 ], [ -116.409556, 43.580055 ], [ -116.409557, 43.580055 ], [ -116.409559, 43.580055 ], [ -116.409572, 43.580056 ], [ -116.409582, 43.580057 ], [ -116.409588, 43.580057 ], [ -116.409593, 43.580058 ], [ -116.409604, 43.580059 ], [ -116.409606, 43.580059 ], [ -116.409613, 43.580059 ], [ -116.409619, 43.58006 ], [ -116.409621, 43.58006 ], [ -116.409627, 43.58006 ], [ -116.409636, 43.580061 ], [ -116.409638, 43.580061 ], [ -116.409644, 43.580061 ], [ -116.409652, 43.580062 ], [ -116.409653, 43.580062 ], [ -116.409665, 43.580063 ], [ -116.409669, 43.580063 ], [ -116.409671, 43.580063 ], [ -116.409684, 43.580064 ], [ -116.409685, 43.580064 ], [ -116.409694, 43.580064 ], [ -116.4097, 43.580065 ], [ -116.409701, 43.580065 ], [ -116.409706, 43.580065 ], [ -116.409717, 43.580066 ], [ -116.409719, 43.580066 ], [ -116.409726, 43.580066 ], [ -116.409732, 43.580066 ], [ -116.409733, 43.580066 ], [ -116.40974, 43.580067 ], [ -116.409749, 43.580067 ], [ -116.40975, 43.580067 ], [ -116.409756, 43.580067 ], [ -116.409765, 43.580067 ], [ -116.409766, 43.580067 ], [ -116.409782, 43.580068 ], [ -116.410069, 43.580076 ], [ -116.410078, 43.580076 ], [ -116.410087, 43.580077 ], [ -116.410096, 43.580077 ], [ -116.410106, 43.580078 ], [ -116.410114, 43.580078 ], [ -116.410115, 43.580078 ], [ -116.410124, 43.580079 ], [ -116.410132, 43.580079 ], [ -116.410133, 43.580079 ], [ -116.410142, 43.58008 ], [ -116.410151, 43.580081 ], [ -116.41016, 43.580082 ], [ -116.410169, 43.580083 ], [ -116.410178, 43.580084 ], [ -116.410265, 43.580097 ], [ -116.410349, 43.580115 ], [ -116.410431, 43.58014 ], [ -116.410434, 43.580141 ], [ -116.410996, 43.580333 ], [ -116.411556, 43.580628 ], [ -116.411563, 43.580631 ], [ -116.411565, 43.580632 ], [ -116.411566, 43.580633 ], [ -116.411569, 43.580634 ], [ -116.41157, 43.580635 ], [ -116.411571, 43.580635 ], [ -116.411572, 43.580636 ], [ -116.411573, 43.580636 ], [ -116.411574, 43.580637 ], [ -116.411575, 43.580637 ], [ -116.411576, 43.580638 ], [ -116.411578, 43.580639 ], [ -116.411579, 43.580639 ], [ -116.41158, 43.58064 ], [ -116.411581, 43.58064 ], [ -116.411582, 43.580641 ], [ -116.411583, 43.580641 ], [ -116.411584, 43.580642 ], [ -116.411585, 43.580642 ], [ -116.411586, 43.580642 ], [ -116.411586, 43.580643 ], [ -116.411588, 43.580643 ], [ -116.411588, 43.580644 ], [ -116.411589, 43.580644 ], [ -116.41159, 43.580644 ], [ -116.411591, 43.580645 ], [ -116.411592, 43.580645 ], [ -116.411594, 43.580646 ], [ -116.411595, 43.580647 ], [ -116.411596, 43.580647 ], [ -116.411596, 43.580648 ], [ -116.411597, 43.580648 ], [ -116.411598, 43.580648 ], [ -116.411599, 43.580649 ], [ -116.411601, 43.58065 ], [ -116.411604, 43.580651 ], [ -116.411605, 43.580651 ], [ -116.411606, 43.580652 ], [ -116.411608, 43.580653 ], [ -116.411609, 43.580653 ], [ -116.411611, 43.580654 ], [ -116.411612, 43.580654 ], [ -116.411612, 43.580655 ], [ -116.411613, 43.580655 ], [ -116.411614, 43.580656 ], [ -116.411617, 43.580657 ], [ -116.411618, 43.580657 ], [ -116.411619, 43.580658 ], [ -116.41162, 43.580658 ], [ -116.411621, 43.580658 ], [ -116.411622, 43.580659 ], [ -116.411623, 43.580659 ], [ -116.411624, 43.58066 ], [ -116.411625, 43.58066 ], [ -116.411626, 43.580661 ], [ -116.411627, 43.580661 ], [ -116.411628, 43.580661 ], [ -116.411629, 43.580662 ], [ -116.41163, 43.580662 ], [ -116.411633, 43.580663 ], [ -116.411634, 43.580664 ], [ -116.411635, 43.580664 ], [ -116.411637, 43.580665 ], [ -116.411638, 43.580665 ], [ -116.411638, 43.580666 ], [ -116.41164, 43.580666 ], [ -116.41164, 43.580667 ], [ -116.411641, 43.580667 ], [ -116.411642, 43.580667 ], [ -116.411643, 43.580668 ], [ -116.411644, 43.580668 ], [ -116.411645, 43.580668 ], [ -116.411646, 43.580669 ], [ -116.411647, 43.580669 ], [ -116.411649, 43.58067 ], [ -116.41165, 43.580671 ], [ -116.411651, 43.580671 ], [ -116.411652, 43.580671 ], [ -116.411653, 43.580671 ], [ -116.411654, 43.580672 ], [ -116.411655, 43.580672 ], [ -116.411657, 43.580673 ], [ -116.411659, 43.580674 ], [ -116.41166, 43.580674 ], [ -116.411661, 43.580675 ], [ -116.411663, 43.580676 ], [ -116.411664, 43.580676 ], [ -116.411665, 43.580676 ], [ -116.411666, 43.580677 ], [ -116.411668, 43.580677 ], [ -116.411669, 43.580678 ], [ -116.41167, 43.580678 ], [ -116.411673, 43.580679 ], [ -116.411674, 43.58068 ], [ -116.411675, 43.58068 ], [ -116.411676, 43.58068 ], [ -116.411677, 43.58068 ], [ -116.411678, 43.580681 ], [ -116.411679, 43.580681 ], [ -116.411681, 43.580682 ], [ -116.411683, 43.580683 ], [ -116.411684, 43.580683 ], [ -116.411685, 43.580683 ], [ -116.411685, 43.580684 ], [ -116.411686, 43.580684 ], [ -116.411687, 43.580684 ], [ -116.411689, 43.580685 ], [ -116.41169, 43.580685 ], [ -116.411692, 43.580686 ], [ -116.411693, 43.580686 ], [ -116.411694, 43.580686 ], [ -116.411694, 43.580687 ], [ -116.411695, 43.580687 ], [ -116.411696, 43.580687 ], [ -116.411698, 43.580688 ], [ -116.411701, 43.580689 ], [ -116.411702, 43.580689 ], [ -116.411703, 43.58069 ], [ -116.411704, 43.58069 ], [ -116.411705, 43.58069 ], [ -116.411706, 43.580691 ], [ -116.411707, 43.580691 ], [ -116.411708, 43.580691 ], [ -116.411709, 43.580692 ], [ -116.41171, 43.580692 ], [ -116.411711, 43.580692 ], [ -116.411712, 43.580692 ], [ -116.411714, 43.580693 ], [ -116.411715, 43.580693 ], [ -116.411717, 43.580694 ], [ -116.411718, 43.580694 ], [ -116.411719, 43.580695 ], [ -116.411721, 43.580695 ], [ -116.411722, 43.580696 ], [ -116.411723, 43.580696 ], [ -116.411724, 43.580696 ], [ -116.411725, 43.580696 ], [ -116.411726, 43.580697 ], [ -116.411728, 43.580697 ], [ -116.411729, 43.580698 ], [ -116.411731, 43.580698 ], [ -116.411732, 43.580699 ], [ -116.411733, 43.580699 ], [ -116.411736, 43.5807 ], [ -116.411737, 43.5807 ], [ -116.411738, 43.5807 ], [ -116.411739, 43.580701 ], [ -116.41174, 43.580701 ], [ -116.411741, 43.580701 ], [ -116.411742, 43.580702 ], [ -116.411744, 43.580702 ], [ -116.411745, 43.580702 ], [ -116.411745, 43.580703 ], [ -116.411746, 43.580703 ], [ -116.411748, 43.580703 ], [ -116.411749, 43.580704 ], [ -116.411751, 43.580704 ], [ -116.411752, 43.580705 ], [ -116.411753, 43.580705 ], [ -116.411754, 43.580705 ], [ -116.411755, 43.580705 ], [ -116.411757, 43.580706 ], [ -116.411759, 43.580706 ], [ -116.41176, 43.580707 ], [ -116.411761, 43.580707 ], [ -116.411762, 43.580707 ], [ -116.411764, 43.580708 ], [ -116.411766, 43.580708 ], [ -116.411767, 43.580708 ], [ -116.411768, 43.580709 ], [ -116.411769, 43.580709 ], [ -116.41177, 43.580709 ], [ -116.411771, 43.580709 ], [ -116.411774, 43.58071 ], [ -116.411776, 43.580711 ], [ -116.411777, 43.580711 ], [ -116.411778, 43.580711 ], [ -116.411781, 43.580712 ], [ -116.411783, 43.580712 ], [ -116.411784, 43.580713 ], [ -116.411785, 43.580713 ], [ -116.411787, 43.580714 ], [ -116.411788, 43.580714 ], [ -116.411791, 43.580714 ], [ -116.411793, 43.580715 ], [ -116.411794, 43.580715 ], [ -116.411795, 43.580715 ], [ -116.411796, 43.580716 ], [ -116.411797, 43.580716 ], [ -116.411798, 43.580716 ], [ -116.4118, 43.580716 ], [ -116.4118, 43.580717 ], [ -116.411802, 43.580717 ], [ -116.411803, 43.580717 ], [ -116.411805, 43.580718 ], [ -116.411806, 43.580718 ], [ -116.411807, 43.580718 ], [ -116.411809, 43.580718 ], [ -116.41181, 43.580719 ], [ -116.411811, 43.580719 ], [ -116.411812, 43.580719 ], [ -116.411813, 43.580719 ], [ -116.411814, 43.580719 ], [ -116.411814, 43.58072 ], [ -116.411815, 43.58072 ], [ -116.411816, 43.58072 ], [ -116.411818, 43.58072 ], [ -116.41182, 43.580721 ], [ -116.411821, 43.580721 ], [ -116.411822, 43.580721 ], [ -116.411823, 43.580721 ], [ -116.411825, 43.580722 ], [ -116.411826, 43.580722 ], [ -116.411827, 43.580722 ], [ -116.411828, 43.580722 ], [ -116.41183, 43.580723 ], [ -116.411831, 43.580723 ], [ -116.411832, 43.580723 ], [ -116.411835, 43.580724 ], [ -116.411836, 43.580724 ], [ -116.411837, 43.580724 ], [ -116.411838, 43.580724 ], [ -116.411839, 43.580725 ], [ -116.41184, 43.580725 ], [ -116.411843, 43.580725 ], [ -116.411844, 43.580726 ], [ -116.411846, 43.580726 ], [ -116.411847, 43.580726 ], [ -116.411848, 43.580726 ], [ -116.411849, 43.580726 ], [ -116.41185, 43.580727 ], [ -116.411851, 43.580727 ], [ -116.411852, 43.580727 ], [ -116.411853, 43.580727 ], [ -116.411854, 43.580727 ], [ -116.411855, 43.580727 ], [ -116.411856, 43.580728 ], [ -116.411857, 43.580728 ], [ -116.411859, 43.580728 ], [ -116.41186, 43.580728 ], [ -116.411861, 43.580728 ], [ -116.411861, 43.580729 ], [ -116.411864, 43.580729 ], [ -116.411865, 43.580729 ], [ -116.411866, 43.580729 ], [ -116.411867, 43.58073 ], [ -116.411868, 43.58073 ], [ -116.41187, 43.58073 ], [ -116.411871, 43.58073 ], [ -116.411872, 43.58073 ], [ -116.411873, 43.580731 ], [ -116.411874, 43.580731 ], [ -116.411876, 43.580731 ], [ -116.411877, 43.580731 ], [ -116.411878, 43.580731 ], [ -116.411879, 43.580732 ], [ -116.41188, 43.580732 ], [ -116.411881, 43.580732 ], [ -116.411882, 43.580732 ], [ -116.411884, 43.580732 ], [ -116.411886, 43.580732 ], [ -116.411886, 43.580733 ], [ -116.411887, 43.580733 ], [ -116.411889, 43.580733 ], [ -116.41189, 43.580733 ], [ -116.411891, 43.580733 ], [ -116.411892, 43.580733 ], [ -116.411893, 43.580733 ], [ -116.411894, 43.580734 ], [ -116.411895, 43.580734 ], [ -116.411897, 43.580734 ], [ -116.411898, 43.580734 ], [ -116.4119, 43.580734 ], [ -116.411901, 43.580735 ], [ -116.411902, 43.580735 ], [ -116.411903, 43.580735 ], [ -116.411905, 43.580735 ], [ -116.411906, 43.580735 ], [ -116.411907, 43.580735 ], [ -116.411909, 43.580736 ], [ -116.411918, 43.580737 ], [ -116.411924, 43.580737 ], [ -116.411926, 43.580738 ], [ -116.411927, 43.580738 ], [ -116.411929, 43.580738 ], [ -116.41193, 43.580738 ], [ -116.411931, 43.580738 ], [ -116.411932, 43.580738 ], [ -116.411934, 43.580738 ], [ -116.411935, 43.580738 ], [ -116.411937, 43.580739 ], [ -116.411938, 43.580739 ], [ -116.41194, 43.580739 ], [ -116.411941, 43.580739 ], [ -116.411942, 43.580739 ], [ -116.411943, 43.580739 ], [ -116.411944, 43.580739 ], [ -116.411946, 43.580739 ], [ -116.411948, 43.58074 ], [ -116.411949, 43.58074 ], [ -116.41195, 43.58074 ], [ -116.411951, 43.58074 ], [ -116.411952, 43.58074 ], [ -116.411953, 43.58074 ], [ -116.411954, 43.58074 ], [ -116.411955, 43.58074 ], [ -116.411956, 43.58074 ], [ -116.411958, 43.58074 ], [ -116.41196, 43.58074 ], [ -116.411961, 43.58074 ], [ -116.411962, 43.58074 ], [ -116.411963, 43.58074 ], [ -116.411964, 43.58074 ], [ -116.411965, 43.58074 ], [ -116.411966, 43.580741 ], [ -116.411967, 43.580741 ], [ -116.411968, 43.580741 ], [ -116.411969, 43.580741 ], [ -116.411971, 43.580741 ], [ -116.411972, 43.580741 ], [ -116.411973, 43.580741 ], [ -116.411974, 43.580741 ], [ -116.411975, 43.580741 ], [ -116.411977, 43.580741 ], [ -116.411978, 43.580741 ], [ -116.411979, 43.580741 ], [ -116.41198, 43.580741 ], [ -116.411981, 43.580741 ], [ -116.411982, 43.580741 ], [ -116.411983, 43.580741 ], [ -116.411985, 43.580741 ], [ -116.411986, 43.580741 ], [ -116.411989, 43.580741 ], [ -116.41199, 43.580741 ], [ -116.411991, 43.580741 ], [ -116.411992, 43.580741 ], [ -116.411993, 43.580741 ], [ -116.411994, 43.580741 ], [ -116.411995, 43.580741 ], [ -116.411996, 43.580741 ], [ -116.411997, 43.580741 ], [ -116.411998, 43.580741 ], [ -116.411999, 43.580741 ], [ -116.412001, 43.580741 ], [ -116.412003, 43.580741 ], [ -116.412004, 43.580741 ], [ -116.412005, 43.580741 ], [ -116.412006, 43.580741 ], [ -116.412009, 43.580741 ], [ -116.41201, 43.580741 ], [ -116.412011, 43.580741 ], [ -116.412012, 43.580741 ], [ -116.412014, 43.580741 ], [ -116.412015, 43.580741 ], [ -116.412016, 43.580741 ], [ -116.412018, 43.580741 ], [ -116.412019, 43.580741 ], [ -116.412022, 43.58074 ], [ -116.412023, 43.58074 ], [ -116.412025, 43.58074 ], [ -116.412026, 43.58074 ], [ -116.412027, 43.58074 ], [ -116.412028, 43.58074 ], [ -116.412029, 43.58074 ], [ -116.41203, 43.58074 ], [ -116.412033, 43.58074 ], [ -116.412035, 43.58074 ], [ -116.412037, 43.58074 ], [ -116.412038, 43.58074 ], [ -116.412039, 43.580739 ], [ -116.41204, 43.580739 ], [ -116.412042, 43.580739 ], [ -116.412043, 43.580739 ], [ -116.412045, 43.580739 ], [ -116.412046, 43.580739 ], [ -116.412047, 43.580739 ], [ -116.412048, 43.580739 ], [ -116.412049, 43.580739 ], [ -116.41205, 43.580739 ], [ -116.412051, 43.580739 ], [ -116.412051, 43.580738 ], [ -116.412053, 43.580738 ], [ -116.412054, 43.580738 ], [ -116.412056, 43.580738 ], [ -116.412057, 43.580738 ], [ -116.412058, 43.580738 ], [ -116.412113, 43.58073 ], [ -116.412167, 43.580717 ], [ -116.412218, 43.580699 ], [ -116.412219, 43.580699 ], [ -116.41222, 43.580699 ], [ -116.412221, 43.580699 ], [ -116.41225, 43.580686 ], [ -116.412251, 43.580685 ], [ -116.412252, 43.580685 ], [ -116.412289, 43.580665 ], [ -116.412291, 43.580664 ], [ -116.412321, 43.580645 ], [ -116.412322, 43.580644 ], [ -116.41233, 43.580638 ], [ -116.412331, 43.580637 ], [ -116.412332, 43.580637 ], [ -116.412333, 43.580636 ], [ -116.412334, 43.580635 ], [ -116.412335, 43.580635 ], [ -116.412336, 43.580634 ], [ -116.412337, 43.580633 ], [ -116.412353, 43.58062 ], [ -116.412663, 43.580353 ], [ -116.412664, 43.580352 ], [ -116.412665, 43.580352 ], [ -116.412665, 43.580351 ], [ -116.412666, 43.580351 ], [ -116.412668, 43.580349 ], [ -116.412669, 43.580349 ], [ -116.412669, 43.580348 ], [ -116.41267, 43.580347 ], [ -116.412672, 43.580346 ], [ -116.412673, 43.580346 ], [ -116.412673, 43.580345 ], [ -116.412674, 43.580345 ], [ -116.412674, 43.580344 ], [ -116.412675, 43.580344 ], [ -116.412677, 43.580342 ], [ -116.412678, 43.580342 ], [ -116.41268, 43.580341 ], [ -116.41268, 43.58034 ], [ -116.412681, 43.58034 ], [ -116.412682, 43.580339 ], [ -116.412683, 43.580338 ], [ -116.412685, 43.580337 ], [ -116.412686, 43.580337 ], [ -116.412686, 43.580336 ], [ -116.412687, 43.580336 ], [ -116.412688, 43.580336 ], [ -116.412689, 43.580335 ], [ -116.41269, 43.580334 ], [ -116.412691, 43.580334 ], [ -116.412692, 43.580333 ], [ -116.412693, 43.580332 ], [ -116.412694, 43.580332 ], [ -116.412697, 43.580331 ], [ -116.412697, 43.58033 ], [ -116.412698, 43.58033 ], [ -116.412699, 43.580329 ], [ -116.4127, 43.580329 ], [ -116.412701, 43.580329 ], [ -116.412701, 43.580328 ], [ -116.412703, 43.580328 ], [ -116.412703, 43.580327 ], [ -116.412705, 43.580327 ], [ -116.412705, 43.580326 ], [ -116.412708, 43.580325 ], [ -116.412709, 43.580325 ], [ -116.41271, 43.580324 ], [ -116.412712, 43.580323 ], [ -116.412715, 43.580322 ], [ -116.412716, 43.580322 ], [ -116.412717, 43.580321 ], [ -116.412718, 43.580321 ], [ -116.41272, 43.58032 ], [ -116.412721, 43.58032 ], [ -116.412722, 43.580319 ], [ -116.412724, 43.580319 ], [ -116.412724, 43.580318 ], [ -116.412725, 43.580318 ], [ -116.412726, 43.580318 ], [ -116.412727, 43.580318 ], [ -116.412728, 43.580317 ], [ -116.412729, 43.580317 ], [ -116.41273, 43.580317 ], [ -116.412731, 43.580316 ], [ -116.412732, 43.580316 ], [ -116.412734, 43.580315 ], [ -116.412735, 43.580315 ], [ -116.412736, 43.580315 ], [ -116.412737, 43.580314 ], [ -116.412738, 43.580314 ], [ -116.412739, 43.580314 ], [ -116.41274, 43.580314 ], [ -116.412742, 43.580313 ], [ -116.412743, 43.580313 ], [ -116.412744, 43.580313 ], [ -116.412744, 43.580312 ], [ -116.412745, 43.580312 ], [ -116.412747, 43.580312 ], [ -116.412748, 43.580312 ], [ -116.412752, 43.580311 ], [ -116.412756, 43.58031 ], [ -116.412759, 43.580309 ], [ -116.41276, 43.580309 ], [ -116.412761, 43.580309 ], [ -116.412764, 43.580308 ], [ -116.412766, 43.580308 ], [ -116.412768, 43.580308 ], [ -116.412771, 43.580307 ], [ -116.412772, 43.580307 ], [ -116.412773, 43.580307 ], [ -116.412774, 43.580307 ], [ -116.412775, 43.580307 ], [ -116.412776, 43.580306 ], [ -116.412777, 43.580306 ], [ -116.412778, 43.580306 ], [ -116.412779, 43.580306 ], [ -116.41278, 43.580306 ], [ -116.412781, 43.580306 ], [ -116.412783, 43.580306 ], [ -116.412785, 43.580306 ], [ -116.412785, 43.580305 ], [ -116.412788, 43.580305 ], [ -116.412789, 43.580305 ], [ -116.412791, 43.580305 ], [ -116.412794, 43.580305 ], [ -116.412797, 43.580305 ], [ -116.412798, 43.580305 ], [ -116.4128, 43.580305 ], [ -116.412802, 43.580305 ], [ -116.412803, 43.580305 ], [ -116.412804, 43.580305 ], [ -116.412805, 43.580305 ], [ -116.412807, 43.580305 ], [ -116.412808, 43.580305 ], [ -116.41281, 43.580305 ], [ -116.412811, 43.580305 ], [ -116.412813, 43.580305 ], [ -116.412815, 43.580305 ], [ -116.412817, 43.580305 ], [ -116.412819, 43.580305 ], [ -116.41282, 43.580305 ], [ -116.412821, 43.580305 ], [ -116.412824, 43.580305 ], [ -116.412828, 43.580305 ], [ -116.412832, 43.580306 ], [ -116.412835, 43.580306 ], [ -116.412836, 43.580306 ], [ -116.412837, 43.580306 ], [ -116.412838, 43.580306 ], [ -116.412841, 43.580307 ], [ -116.412843, 43.580307 ], [ -116.412845, 43.580307 ], [ -116.412847, 43.580308 ], [ -116.412849, 43.580308 ], [ -116.41285, 43.580308 ], [ -116.412851, 43.580308 ], [ -116.412853, 43.580309 ], [ -116.412856, 43.580309 ], [ -116.412858, 43.58031 ], [ -116.412859, 43.58031 ], [ -116.412862, 43.58031 ], [ -116.412865, 43.580311 ], [ -116.412866, 43.580311 ], [ -116.412866, 43.580312 ], [ -116.41287, 43.580312 ], [ -116.412872, 43.580313 ], [ -116.412874, 43.580313 ], [ -116.412875, 43.580314 ], [ -116.412878, 43.580315 ], [ -116.41288, 43.580315 ], [ -116.412882, 43.580316 ], [ -116.412883, 43.580316 ], [ -116.412886, 43.580317 ], [ -116.412888, 43.580318 ], [ -116.41289, 43.580318 ], [ -116.412892, 43.580319 ], [ -116.412894, 43.58032 ], [ -116.412895, 43.58032 ], [ -116.412897, 43.580321 ], [ -116.4129, 43.580322 ], [ -116.412902, 43.580323 ], [ -116.412905, 43.580324 ], [ -116.412907, 43.580325 ], [ -116.412908, 43.580326 ], [ -116.41291, 43.580327 ], [ -116.412912, 43.580328 ], [ -116.412914, 43.580329 ], [ -116.412915, 43.580329 ], [ -116.412916, 43.58033 ], [ -116.412917, 43.58033 ], [ -116.412919, 43.580331 ], [ -116.412921, 43.580332 ], [ -116.412922, 43.580333 ], [ -116.412923, 43.580333 ], [ -116.412925, 43.580335 ], [ -116.412926, 43.580335 ], [ -116.412926, 43.580336 ], [ -116.412927, 43.580336 ], [ -116.412928, 43.580336 ], [ -116.412929, 43.580337 ], [ -116.412931, 43.580339 ], [ -116.412932, 43.580339 ], [ -116.412933, 43.58034 ], [ -116.412936, 43.580341 ], [ -116.412937, 43.580342 ], [ -116.412939, 43.580343 ], [ -116.412939, 43.580344 ], [ -116.41294, 43.580344 ], [ -116.412942, 43.580346 ], [ -116.412943, 43.580347 ], [ -116.412944, 43.580348 ], [ -116.412945, 43.580348 ], [ -116.412946, 43.580349 ], [ -116.412948, 43.58035 ], [ -116.412949, 43.580351 ], [ -116.41295, 43.580353 ], [ -116.412951, 43.580353 ], [ -116.412953, 43.580354 ], [ -116.412953, 43.580355 ], [ -116.412954, 43.580355 ], [ -116.412956, 43.580357 ], [ -116.412958, 43.580359 ], [ -116.412958, 43.58036 ], [ -116.412959, 43.58036 ], [ -116.412959, 43.580361 ], [ -116.412961, 43.580362 ], [ -116.412961, 43.580363 ], [ -116.412962, 43.580364 ], [ -116.412963, 43.580364 ], [ -116.412963, 43.580365 ], [ -116.412964, 43.580365 ], [ -116.412964, 43.580366 ], [ -116.412965, 43.580366 ], [ -116.412966, 43.580368 ], [ -116.412967, 43.580369 ], [ -116.412968, 43.58037 ], [ -116.412969, 43.580371 ], [ -116.412969, 43.580372 ], [ -116.41297, 43.580372 ], [ -116.41297, 43.580373 ], [ -116.412971, 43.580373 ], [ -116.412971, 43.580374 ], [ -116.412972, 43.580375 ], [ -116.412972, 43.580376 ], [ -116.412973, 43.580376 ], [ -116.412974, 43.580377 ], [ -116.412975, 43.580379 ], [ -116.412979, 43.580385 ], [ -116.412981, 43.580388 ], [ -116.412983, 43.58039 ], [ -116.412984, 43.580392 ], [ -116.412985, 43.580393 ], [ -116.412986, 43.580395 ], [ -116.412988, 43.580399 ], [ -116.412989, 43.580399 ], [ -116.412991, 43.580402 ], [ -116.412991, 43.580403 ], [ -116.412992, 43.580405 ], [ -116.412993, 43.580405 ], [ -116.412993, 43.580406 ], [ -116.412994, 43.580407 ], [ -116.412995, 43.580409 ], [ -116.412997, 43.580412 ], [ -116.412997, 43.580413 ], [ -116.412999, 43.580415 ], [ -116.413, 43.580416 ], [ -116.413001, 43.580419 ], [ -116.413002, 43.580419 ], [ -116.413003, 43.580421 ], [ -116.413003, 43.580422 ], [ -116.413006, 43.580426 ], [ -116.413007, 43.580427 ], [ -116.413007, 43.580428 ], [ -116.413008, 43.58043 ], [ -116.413009, 43.580432 ], [ -116.41301, 43.580433 ], [ -116.413011, 43.580435 ], [ -116.413012, 43.580436 ], [ -116.413014, 43.58044 ], [ -116.413015, 43.580441 ], [ -116.413016, 43.580442 ], [ -116.413016, 43.580444 ], [ -116.413017, 43.580445 ], [ -116.413018, 43.580447 ], [ -116.413019, 43.580449 ], [ -116.41302, 43.58045 ], [ -116.413021, 43.580452 ], [ -116.413022, 43.580454 ], [ -116.413022, 43.580455 ], [ -116.413023, 43.580455 ], [ -116.413024, 43.580457 ], [ -116.413025, 43.580459 ], [ -116.413025, 43.58046 ], [ -116.413026, 43.580461 ], [ -116.413027, 43.580463 ], [ -116.413028, 43.580465 ], [ -116.413029, 43.580467 ], [ -116.41303, 43.580468 ], [ -116.41303, 43.580469 ], [ -116.413031, 43.580471 ], [ -116.413032, 43.580472 ], [ -116.413033, 43.580475 ], [ -116.413033, 43.580476 ], [ -116.413035, 43.580478 ], [ -116.413035, 43.58048 ], [ -116.413036, 43.580481 ], [ -116.413037, 43.580483 ], [ -116.413037, 43.580484 ], [ -116.413038, 43.580485 ], [ -116.413039, 43.580487 ], [ -116.41304, 43.58049 ], [ -116.413042, 43.580493 ], [ -116.413043, 43.580495 ], [ -116.413043, 43.580496 ], [ -116.413044, 43.580497 ], [ -116.413044, 43.580498 ], [ -116.413045, 43.5805 ], [ -116.413047, 43.580504 ], [ -116.413049, 43.580508 ], [ -116.413049, 43.58051 ], [ -116.41305, 43.58051 ], [ -116.41305, 43.580511 ], [ -116.41305, 43.580512 ], [ -116.413051, 43.580514 ], [ -116.413053, 43.580518 ], [ -116.413053, 43.580519 ], [ -116.413055, 43.580522 ], [ -116.413055, 43.580523 ], [ -116.413056, 43.580525 ], [ -116.413056, 43.580526 ], [ -116.413057, 43.580527 ], [ -116.413058, 43.58053 ], [ -116.413059, 43.580533 ], [ -116.41306, 43.580537 ], [ -116.413061, 43.580537 ], [ -116.413061, 43.580538 ], [ -116.413062, 43.58054 ], [ -116.413062, 43.580541 ], [ -116.413062, 43.580542 ], [ -116.413063, 43.580544 ], [ -116.413064, 43.580548 ], [ -116.413065, 43.580549 ], [ -116.413065, 43.58055 ], [ -116.413066, 43.580552 ], [ -116.413067, 43.580554 ], [ -116.413067, 43.580555 ], [ -116.413068, 43.580557 ], [ -116.413068, 43.580558 ], [ -116.41307, 43.580562 ], [ -116.41307, 43.580563 ], [ -116.413071, 43.580566 ], [ -116.413072, 43.580569 ], [ -116.413072, 43.58057 ], [ -116.413073, 43.580571 ], [ -116.413073, 43.580573 ], [ -116.413074, 43.580574 ], [ -116.413074, 43.580577 ], [ -116.413075, 43.580578 ], [ -116.413075, 43.58058 ], [ -116.413075, 43.580581 ], [ -116.413076, 43.580584 ], [ -116.413077, 43.580585 ], [ -116.41309, 43.580637 ], [ -116.41322, 43.581273 ], [ -116.413222, 43.581282 ], [ -116.413232, 43.58132 ], [ -116.413244, 43.581357 ], [ -116.413318, 43.581357 ], [ -116.413455, 43.581357 ], [ -116.413603, 43.581358 ], [ -116.413725, 43.581361 ], [ -116.413716, 43.582919 ], [ -116.414787, 43.582926 ], [ -116.414859, 43.583007 ], [ -116.41488, 43.583031 ], [ -116.414903, 43.583055 ], [ -116.414926, 43.583078 ], [ -116.414949, 43.583101 ], [ -116.414974, 43.583124 ], [ -116.414997, 43.583147 ], [ -116.415023, 43.583169 ], [ -116.415049, 43.583191 ], [ -116.415075, 43.583212 ], [ -116.415101, 43.583233 ], [ -116.415129, 43.583254 ], [ -116.415156, 43.583275 ], [ -116.415184, 43.583295 ], [ -116.415212, 43.583315 ], [ -116.415213, 43.583315 ], [ -116.415242, 43.583334 ], [ -116.415271, 43.583353 ], [ -116.415302, 43.583372 ], [ -116.415332, 43.58339 ], [ -116.415363, 43.583408 ], [ -116.415394, 43.583426 ], [ -116.415426, 43.583443 ], [ -116.415457, 43.583459 ], [ -116.415457, 43.58346 ], [ -116.415491, 43.583476 ], [ -116.415523, 43.583492 ], [ -116.415557, 43.583507 ], [ -116.41559, 43.583522 ], [ -116.415642, 43.583544 ], [ -116.415642, 43.583545 ], [ -116.415891, 43.583647 ], [ -116.415902, 43.583651 ], [ -116.415915, 43.583655 ], [ -116.415915, 43.583656 ], [ -116.415929, 43.58366 ], [ -116.415939, 43.583663 ], [ -116.415951, 43.583666 ], [ -116.415965, 43.58367 ], [ -116.415981, 43.583674 ], [ -116.415997, 43.583677 ], [ -116.41601, 43.583679 ], [ -116.416024, 43.583681 ], [ -116.416036, 43.583683 ], [ -116.416048, 43.583684 ], [ -116.416065, 43.583685 ], [ -116.416084, 43.583686 ], [ -116.4161, 43.583687 ], [ -116.416115, 43.583687 ], [ -116.41613, 43.583687 ], [ -116.416145, 43.583686 ], [ -116.416157, 43.583685 ], [ -116.416169, 43.583684 ], [ -116.416183, 43.583682 ], [ -116.416198, 43.58368 ], [ -116.416209, 43.583679 ], [ -116.416562, 43.583617 ], [ -116.416576, 43.583615 ], [ -116.416591, 43.583613 ], [ -116.416606, 43.583612 ], [ -116.416621, 43.583611 ], [ -116.416632, 43.58361 ], [ -116.416643, 43.58361 ], [ -116.416654, 43.58361 ], [ -116.416665, 43.58361 ], [ -116.41668, 43.583611 ], [ -116.416696, 43.583612 ], [ -116.416707, 43.583614 ], [ -116.41672, 43.583616 ], [ -116.416736, 43.583618 ], [ -116.416755, 43.583622 ], [ -116.416771, 43.583626 ], [ -116.416785, 43.583629 ], [ -116.416801, 43.583634 ], [ -116.416818, 43.58364 ], [ -116.416831, 43.583645 ], [ -116.416844, 43.583651 ], [ -116.416857, 43.583657 ], [ -116.4172, 43.583829 ], [ -116.417213, 43.583835 ], [ -116.417226, 43.583841 ], [ -116.417239, 43.583846 ], [ -116.417253, 43.583851 ], [ -116.417266, 43.583856 ], [ -116.417276, 43.583859 ], [ -116.417287, 43.583862 ], [ -116.4173, 43.583866 ], [ -116.417316, 43.58387 ], [ -116.417332, 43.583873 ], [ -116.417345, 43.583876 ], [ -116.417358, 43.583878 ], [ -116.417371, 43.58388 ], [ -116.417384, 43.583881 ], [ -116.417397, 43.583883 ], [ -116.41741, 43.583884 ], [ -116.417424, 43.583885 ], [ -116.417437, 43.583885 ], [ -116.417452, 43.583885 ], [ -116.417469, 43.583885 ], [ -116.41748, 43.583885 ], [ -116.417496, 43.583884 ], [ -116.417505, 43.583883 ], [ -116.417516, 43.583882 ], [ -116.418943, 43.583727 ], [ -116.418959, 43.583725 ], [ -116.418973, 43.583723 ], [ -116.418985, 43.583722 ], [ -116.418997, 43.583719 ], [ -116.419006, 43.583718 ], [ -116.419017, 43.583715 ], [ -116.419028, 43.583713 ], [ -116.419041, 43.58371 ], [ -116.419057, 43.583706 ], [ -116.41907, 43.583702 ], [ -116.419082, 43.583698 ], [ -116.419092, 43.583695 ], [ -116.419106, 43.58369 ], [ -116.419118, 43.583685 ], [ -116.419129, 43.583681 ], [ -116.419142, 43.583676 ], [ -116.419158, 43.583669 ], [ -116.41917, 43.583663 ], [ -116.41918, 43.583658 ], [ -116.419191, 43.583652 ], [ -116.4192, 43.583648 ], [ -116.419209, 43.583643 ], [ -116.41922, 43.583636 ], [ -116.419232, 43.583628 ], [ -116.419243, 43.583621 ], [ -116.419253, 43.583614 ], [ -116.419266, 43.583604 ], [ -116.419279, 43.583594 ], [ -116.419291, 43.583584 ], [ -116.419301, 43.583574 ], [ -116.419311, 43.583565 ], [ -116.419321, 43.583555 ], [ -116.419328, 43.583548 ], [ -116.419334, 43.583541 ], [ -116.41934, 43.583534 ], [ -116.419345, 43.583527 ], [ -116.419352, 43.583519 ], [ -116.419357, 43.583511 ], [ -116.419364, 43.583502 ], [ -116.41937, 43.583492 ], [ -116.419375, 43.583484 ], [ -116.41938, 43.583476 ], [ -116.419385, 43.583467 ], [ -116.419669, 43.582905 ], [ -116.419679, 43.582886 ], [ -116.419689, 43.582868 ], [ -116.419701, 43.582849 ], [ -116.419712, 43.582831 ], [ -116.419723, 43.582812 ], [ -116.419735, 43.582794 ], [ -116.419747, 43.582776 ], [ -116.41976, 43.582759 ], [ -116.419774, 43.582741 ], [ -116.419787, 43.582723 ], [ -116.419802, 43.582706 ], [ -116.419816, 43.582689 ], [ -116.419831, 43.582672 ], [ -116.419847, 43.582655 ], [ -116.419862, 43.582639 ], [ -116.419878, 43.582623 ], [ -116.419895, 43.582606 ], [ -116.419912, 43.582591 ], [ -116.419929, 43.582575 ], [ -116.419946, 43.582559 ], [ -116.419965, 43.582544 ], [ -116.419983, 43.582529 ], [ -116.420002, 43.582514 ], [ -116.420021, 43.5825 ], [ -116.420041, 43.582486 ], [ -116.420061, 43.582472 ], [ -116.42008, 43.582458 ], [ -116.420101, 43.582444 ], [ -116.420121, 43.582431 ], [ -116.420143, 43.582418 ], [ -116.420164, 43.582405 ], [ -116.420186, 43.582393 ], [ -116.420208, 43.582381 ], [ -116.42023, 43.582369 ], [ -116.420272, 43.582348 ], [ -116.42135, 43.581821 ], [ -116.421363, 43.581815 ], [ -116.421374, 43.581811 ], [ -116.421384, 43.581808 ], [ -116.421398, 43.581804 ], [ -116.42141, 43.581801 ], [ -116.421425, 43.581798 ], [ -116.42144, 43.581796 ], [ -116.421457, 43.581794 ], [ -116.421474, 43.581793 ], [ -116.421491, 43.581793 ], [ -116.421506, 43.581794 ], [ -116.421521, 43.581796 ], [ -116.421534, 43.581798 ], [ -116.421549, 43.5818 ], [ -116.421566, 43.581805 ], [ -116.421578, 43.581808 ], [ -116.421591, 43.581812 ], [ -116.421604, 43.581817 ], [ -116.421614, 43.581822 ], [ -116.421624, 43.581827 ], [ -116.421634, 43.581833 ], [ -116.421643, 43.581838 ], [ -116.421652, 43.581844 ], [ -116.421663, 43.581853 ], [ -116.421664, 43.581853 ], [ -116.421674, 43.581862 ], [ -116.421683, 43.581871 ], [ -116.421691, 43.58188 ], [ -116.421691, 43.581881 ], [ -116.421698, 43.581889 ], [ -116.421704, 43.581899 ], [ -116.421711, 43.581911 ], [ -116.421716, 43.581923 ], [ -116.42172, 43.581934 ], [ -116.421723, 43.581944 ], [ -116.421724, 43.581953 ], [ -116.421726, 43.581963 ], [ -116.421726, 43.581974 ], [ -116.421725, 43.581984 ], [ -116.421724, 43.581992 ], [ -116.421723, 43.582 ], [ -116.421721, 43.582008 ], [ -116.421718, 43.582016 ], [ -116.421715, 43.582025 ], [ -116.421708, 43.582037 ], [ -116.421495, 43.582397 ], [ -116.421067, 43.582911 ], [ -116.421066, 43.582913 ], [ -116.423525, 43.582929 ], [ -116.423754, 43.58293 ], [ -116.430664, 43.582974 ], [ -116.430667, 43.582974 ], [ -116.431417, 43.584284 ], [ -116.431421, 43.584291 ], [ -116.433794, 43.584293 ], [ -116.43377, 43.586592 ], [ -116.433753, 43.588139 ], [ -116.433848, 43.58814 ], [ -116.433934, 43.58814 ], [ -116.43534, 43.588146 ], [ -116.43734, 43.588154 ], [ -116.437537, 43.588154 ], [ -116.437524, 43.588188 ], [ -116.437519, 43.588223 ], [ -116.437522, 43.588257 ], [ -116.437532, 43.588291 ], [ -116.437666, 43.588612 ], [ -116.437713, 43.588882 ], [ -116.434148, 43.588868 ], [ -116.434147, 43.588868 ], [ -116.434027, 43.588538 ], [ -116.43396, 43.588494 ], [ -116.433877, 43.588441 ], [ -116.433844, 43.588419 ], [ -116.43375, 43.588359 ], [ -116.43373, 43.590199 ], [ -116.433728, 43.593182 ], [ -116.433728, 43.593455 ], [ -116.433727, 43.59471 ], [ -116.433728, 43.59471 ], [ -116.434604, 43.594711 ], [ -116.434906, 43.594508 ], [ -116.435271, 43.594392 ], [ -116.435829, 43.594318 ], [ -116.437037, 43.594091 ], [ -116.437697, 43.594002 ], [ -116.438308, 43.593957 ], [ -116.438692, 43.593948 ], [ -116.439869, 43.593916 ], [ -116.442415, 43.594011 ], [ -116.444467, 43.594152 ], [ -116.44499, 43.594186 ], [ -116.447117, 43.594408 ], [ -116.447227, 43.594411 ], [ -116.447712, 43.594438 ], [ -116.448706, 43.594541 ], [ -116.448692, 43.597547 ], [ -116.44868, 43.60029 ], [ -116.44868, 43.600291 ], [ -116.453, 43.601024 ], [ -116.453665, 43.601131 ], [ -116.453685, 43.597563 ], [ -116.453687, 43.597289 ], [ -116.453715, 43.597289 ], [ -116.454998, 43.597293 ], [ -116.455007, 43.596047 ], [ -116.453718, 43.596043 ], [ -116.453694, 43.596043 ], [ -116.453701, 43.59478 ], [ -116.463613, 43.595917 ], [ -116.463614, 43.59608 ], [ -116.463614, 43.597581 ], [ -116.463614, 43.601223 ], [ -116.453703, 43.601207 ], [ -116.453665, 43.601207 ], [ -116.453661, 43.601746 ], [ -116.453656, 43.602561 ], [ -116.451372, 43.602192 ], [ -116.448675, 43.601747 ], [ -116.448669, 43.60313 ], [ -116.448662, 43.60464 ], [ -116.448662, 43.604684 ], [ -116.448661, 43.604835 ], [ -116.448652, 43.60782 ] ], [ [ -116.3893, 43.539163 ], [ -116.384319, 43.539151 ], [ -116.384356, 43.542784 ], [ -116.381882, 43.54278 ], [ -116.379374, 43.542776 ], [ -116.379368, 43.541111 ], [ -116.379367, 43.541058 ], [ -116.378727, 43.541157 ], [ -116.378465, 43.541293 ], [ -116.378263, 43.541533 ], [ -116.378008, 43.542587 ], [ -116.378052, 43.542896 ], [ -116.378419, 43.543657 ], [ -116.378626, 43.543893 ], [ -116.379009, 43.544041 ], [ -116.379207, 43.544078 ], [ -116.379211, 43.5444 ], [ -116.37923, 43.546377 ], [ -116.379234, 43.546445 ], [ -116.3844, 43.546436 ], [ -116.384396, 43.546505 ], [ -116.384396, 43.548277 ], [ -116.384411, 43.550118 ], [ -116.384412, 43.550116 ], [ -116.384904, 43.550114 ], [ -116.385169, 43.55054 ], [ -116.38545, 43.551209 ], [ -116.385642, 43.551724 ], [ -116.385868, 43.551988 ], [ -116.386425, 43.551988 ], [ -116.386827, 43.551555 ], [ -116.387139, 43.55171 ], [ -116.386911, 43.551954 ], [ -116.386889, 43.552202 ], [ -116.387036, 43.552411 ], [ -116.387314, 43.552542 ], [ -116.387647, 43.552602 ], [ -116.388346, 43.552628 ], [ -116.388752, 43.552528 ], [ -116.389121, 43.552377 ], [ -116.389896, 43.552504 ], [ -116.390065, 43.552478 ], [ -116.3905, 43.552225 ], [ -116.391382, 43.551926 ], [ -116.391493, 43.551667 ], [ -116.391478, 43.55153 ], [ -116.391561, 43.551528 ], [ -116.391645, 43.551531 ], [ -116.391727, 43.551538 ], [ -116.391809, 43.551551 ], [ -116.39218, 43.551051 ], [ -116.392283, 43.551109 ], [ -116.39238, 43.551172 ], [ -116.392471, 43.55124 ], [ -116.392744, 43.551456 ], [ -116.392782, 43.551483 ], [ -116.392825, 43.551505 ], [ -116.392872, 43.551523 ], [ -116.392922, 43.551536 ], [ -116.392973, 43.551543 ], [ -116.393026, 43.551546 ], [ -116.393855, 43.55154 ], [ -116.393857, 43.551549 ], [ -116.393838, 43.55008 ], [ -116.393608, 43.550079 ], [ -116.389346, 43.550099 ], [ -116.389327, 43.54918 ], [ -116.389325, 43.549055 ], [ -116.389317, 43.548262 ], [ -116.389313, 43.547525 ], [ -116.389305, 43.546733 ], [ -116.389302, 43.546495 ], [ -116.389305, 43.546427 ], [ -116.389296, 43.546358 ], [ -116.389298, 43.542791 ], [ -116.3893, 43.539163 ] ], [ [ -116.379367, 43.541058 ], [ -116.379651, 43.541024 ], [ -116.379941, 43.540939 ], [ -116.380191, 43.540824 ], [ -116.380489, 43.540605 ], [ -116.380974, 43.539805 ], [ -116.381001, 43.539637 ], [ -116.380949, 43.539476 ], [ -116.38014, 43.5385 ], [ -116.379778, 43.537779 ], [ -116.379665, 43.537637 ], [ -116.379507, 43.537511 ], [ -116.379331, 43.537416 ], [ -116.379332, 43.537543 ], [ -116.379348, 43.539139 ], [ -116.379366, 43.540951 ], [ -116.379367, 43.541058 ] ], [ [ -116.448652, 43.60782 ], [ -116.448408, 43.607717 ], [ -116.448077, 43.607864 ], [ -116.447529, 43.607647 ], [ -116.447542, 43.606967 ], [ -116.446667, 43.606964 ], [ -116.446668, 43.60645 ], [ -116.447544, 43.606454 ], [ -116.44755, 43.604924 ], [ -116.44755, 43.604832 ], [ -116.446482, 43.604829 ], [ -116.446477, 43.607141 ], [ -116.445096, 43.605934 ], [ -116.445098, 43.604824 ], [ -116.444515, 43.604822 ], [ -116.444502, 43.608933 ], [ -116.444503, 43.608934 ], [ -116.444504, 43.608935 ], [ -116.444503, 43.609175 ], [ -116.444502, 43.609175 ], [ -116.439481, 43.609107 ], [ -116.439474, 43.609379 ], [ -116.444501, 43.609448 ], [ -116.448646000144294, 43.609503959500501 ], [ -116.448652, 43.60782 ] ], [ [ -116.349405, 43.564839 ], [ -116.349413, 43.562663 ], [ -116.349415, 43.562186 ], [ -116.349418, 43.561344 ], [ -116.349419, 43.561281 ], [ -116.349419, 43.561213 ], [ -116.347357, 43.561203 ], [ -116.344403, 43.561191 ], [ -116.344328, 43.561191 ], [ -116.343506, 43.561187 ], [ -116.343499, 43.563836 ], [ -116.341997, 43.563831 ], [ -116.341995, 43.564815 ], [ -116.34439, 43.564827 ], [ -116.344394, 43.564851 ], [ -116.344394, 43.564823 ], [ -116.347134, 43.564831 ], [ -116.347735, 43.564834 ], [ -116.349405, 43.56484 ], [ -116.349405, 43.564839 ] ], [ [ -116.35437, 43.546546 ], [ -116.355407, 43.546541 ], [ -116.355408, 43.546651 ], [ -116.35541, 43.546951 ], [ -116.356423, 43.547243 ], [ -116.356688, 43.547313 ], [ -116.356986, 43.547298 ], [ -116.357069, 43.547328 ], [ -116.357124, 43.547366 ], [ -116.357408, 43.547568 ], [ -116.357861, 43.548005 ], [ -116.358087, 43.548045 ], [ -116.358407, 43.547981 ], [ -116.358644, 43.547806 ], [ -116.359388, 43.547804 ], [ -116.359389, 43.547805 ], [ -116.359385, 43.546634 ], [ -116.359384, 43.54653 ], [ -116.361669, 43.546518 ], [ -116.363313, 43.546508 ], [ -116.363313, 43.546439 ], [ -116.363311, 43.546222 ], [ -116.362622, 43.546036 ], [ -116.362546, 43.546012 ], [ -116.362475, 43.545982 ], [ -116.362408, 43.545946 ], [ -116.362347, 43.545906 ], [ -116.362292, 43.54586 ], [ -116.362245, 43.545811 ], [ -116.362205, 43.545758 ], [ -116.362108, 43.545611 ], [ -116.361985, 43.545424 ], [ -116.359757, 43.541587 ], [ -116.359691, 43.541547 ], [ -116.359742, 43.544972 ], [ -116.360103, 43.5465 ], [ -116.35437, 43.546546 ] ], [ [ -116.35437, 43.546546 ], [ -116.354365, 43.544938 ], [ -116.354376, 43.544938 ], [ -116.35436, 43.543623 ], [ -116.354368, 43.543617 ], [ -116.354358, 43.542844 ], [ -116.349377, 43.542862 ], [ -116.349366, 43.542865 ], [ -116.349368, 43.544375 ], [ -116.349371, 43.546579 ], [ -116.351659, 43.546567 ], [ -116.351665, 43.547497 ], [ -116.353361, 43.547487 ], [ -116.35336, 43.547136 ], [ -116.353888, 43.547132 ], [ -116.35428, 43.547381 ], [ -116.354373, 43.547445 ], [ -116.35437, 43.546546 ] ], [ [ -116.354218, 43.572104 ], [ -116.354284, 43.572104 ], [ -116.354305, 43.572104 ], [ -116.354396, 43.572103 ], [ -116.3544, 43.568646 ], [ -116.354201, 43.568647 ], [ -116.352477, 43.568644 ], [ -116.351861, 43.568643 ], [ -116.35186, 43.568643 ], [ -116.351861, 43.569264 ], [ -116.351704, 43.569806 ], [ -116.351398, 43.569805 ], [ -116.350949, 43.570115 ], [ -116.350946, 43.5721 ], [ -116.350945, 43.572101 ], [ -116.352237, 43.572102 ], [ -116.352681, 43.572103 ], [ -116.352702, 43.572103 ], [ -116.353168, 43.572103 ], [ -116.353948, 43.572104 ], [ -116.354218, 43.572104 ] ], [ [ -116.354423, 43.564227 ], [ -116.354429, 43.562982 ], [ -116.354248, 43.562982 ], [ -116.351311, 43.562965 ], [ -116.35131, 43.562965 ], [ -116.351301, 43.563761 ], [ -116.352235, 43.563744 ], [ -116.35222, 43.56485 ], [ -116.35442, 43.564858 ], [ -116.354423, 43.564228 ], [ -116.354423, 43.564227 ] ], [ [ -116.354433, 43.57943 ], [ -116.35441, 43.577265 ], [ -116.353306, 43.577264 ], [ -116.35139, 43.577264 ], [ -116.35141, 43.5794 ], [ -116.35141, 43.579422 ], [ -116.353513, 43.579428 ], [ -116.354252, 43.57943 ], [ -116.354433, 43.57943 ] ], [ [ -116.353484, 43.574817 ], [ -116.353525, 43.574535 ], [ -116.353528, 43.574535 ], [ -116.353865, 43.574535 ], [ -116.353865, 43.574533 ], [ -116.353865, 43.574333 ], [ -116.353868, 43.574333 ], [ -116.354216, 43.574333 ], [ -116.354216, 43.57423 ], [ -116.354278, 43.574306 ], [ -116.354397, 43.574304 ], [ -116.354397, 43.573924 ], [ -116.354208, 43.573924 ], [ -116.354206, 43.573924 ], [ -116.354205, 43.573924 ], [ -116.354203, 43.573924 ], [ -116.354201, 43.573924 ], [ -116.354199, 43.573924 ], [ -116.354197, 43.573924 ], [ -116.354195, 43.573924 ], [ -116.354193, 43.573924 ], [ -116.354191, 43.573924 ], [ -116.354189, 43.573924 ], [ -116.354188, 43.573923 ], [ -116.354186, 43.573923 ], [ -116.354184, 43.573923 ], [ -116.354182, 43.573923 ], [ -116.35418, 43.573923 ], [ -116.354178, 43.573922 ], [ -116.354176, 43.573922 ], [ -116.354174, 43.573922 ], [ -116.354172, 43.573921 ], [ -116.354171, 43.573921 ], [ -116.354169, 43.573921 ], [ -116.354167, 43.57392 ], [ -116.354165, 43.57392 ], [ -116.354162, 43.573919 ], [ -116.35416, 43.573919 ], [ -116.354158, 43.573919 ], [ -116.354156, 43.573918 ], [ -116.354154, 43.573918 ], [ -116.354153, 43.573917 ], [ -116.354151, 43.573917 ], [ -116.354149, 43.573916 ], [ -116.354146, 43.573915 ], [ -116.354144, 43.573915 ], [ -116.354142, 43.573914 ], [ -116.35414, 43.573913 ], [ -116.354138, 43.573913 ], [ -116.354136, 43.573912 ], [ -116.354134, 43.573911 ], [ -116.354132, 43.57391 ], [ -116.354129, 43.573909 ], [ -116.354127, 43.573908 ], [ -116.354125, 43.573908 ], [ -116.354122, 43.573906 ], [ -116.35412, 43.573906 ], [ -116.354118, 43.573904 ], [ -116.354116, 43.573903 ], [ -116.354113, 43.573902 ], [ -116.35411, 43.5739 ], [ -116.354108, 43.573899 ], [ -116.354105, 43.573898 ], [ -116.354102, 43.573896 ], [ -116.3541, 43.573894 ], [ -116.354097, 43.573892 ], [ -116.354095, 43.57389 ], [ -116.354093, 43.573889 ], [ -116.35409, 43.573887 ], [ -116.354088, 43.573885 ], [ -116.354086, 43.573884 ], [ -116.354084, 43.573882 ], [ -116.354081, 43.57388 ], [ -116.35408, 43.573878 ], [ -116.354079, 43.573877 ], [ -116.354076, 43.573874 ], [ -116.354075, 43.573873 ], [ -116.354073, 43.573871 ], [ -116.354072, 43.57387 ], [ -116.354069, 43.573866 ], [ -116.353754, 43.573477 ], [ -116.353753, 43.573475 ], [ -116.353752, 43.573474 ], [ -116.35375, 43.573472 ], [ -116.353748, 43.573471 ], [ -116.353747, 43.57347 ], [ -116.353746, 43.573468 ], [ -116.353744, 43.573466 ], [ -116.353743, 43.573465 ], [ -116.353742, 43.573463 ], [ -116.353741, 43.573463 ], [ -116.353739, 43.573461 ], [ -116.353737, 43.573458 ], [ -116.353735, 43.573456 ], [ -116.353732, 43.573454 ], [ -116.353731, 43.573453 ], [ -116.353729, 43.573451 ], [ -116.353727, 43.57345 ], [ -116.353725, 43.573448 ], [ -116.353723, 43.573447 ], [ -116.353722, 43.573445 ], [ -116.353719, 43.573443 ], [ -116.353717, 43.57344 ], [ -116.353715, 43.573439 ], [ -116.353712, 43.573438 ], [ -116.35371, 43.573436 ], [ -116.353708, 43.573435 ], [ -116.353705, 43.573433 ], [ -116.353703, 43.573431 ], [ -116.353702, 43.57343 ], [ -116.353699, 43.573428 ], [ -116.353696, 43.573426 ], [ -116.353693, 43.573424 ], [ -116.35369, 43.573423 ], [ -116.353687, 43.573421 ], [ -116.353685, 43.57342 ], [ -116.353683, 43.573418 ], [ -116.35368, 43.573417 ], [ -116.353677, 43.573415 ], [ -116.353675, 43.573414 ], [ -116.353672, 43.573413 ], [ -116.35367, 43.573412 ], [ -116.353667, 43.57341 ], [ -116.353665, 43.573409 ], [ -116.353663, 43.573408 ], [ -116.35366, 43.573407 ], [ -116.353658, 43.573406 ], [ -116.353656, 43.573405 ], [ -116.353653, 43.573404 ], [ -116.353651, 43.573403 ], [ -116.353648, 43.573402 ], [ -116.353647, 43.573401 ], [ -116.353645, 43.5734 ], [ -116.353642, 43.573399 ], [ -116.35364, 43.573398 ], [ -116.353638, 43.573398 ], [ -116.353635, 43.573397 ], [ -116.353635, 43.573396 ], [ -116.353633, 43.573396 ], [ -116.353631, 43.573395 ], [ -116.35363, 43.573395 ], [ -116.353627, 43.573394 ], [ -116.353625, 43.573393 ], [ -116.353623, 43.573392 ], [ -116.353621, 43.573392 ], [ -116.353619, 43.573391 ], [ -116.353616, 43.57339 ], [ -116.353614, 43.57339 ], [ -116.353613, 43.573389 ], [ -116.353611, 43.573389 ], [ -116.353609, 43.573388 ], [ -116.353607, 43.573388 ], [ -116.353604, 43.573387 ], [ -116.353602, 43.573387 ], [ -116.3536, 43.573386 ], [ -116.353598, 43.573386 ], [ -116.353596, 43.573385 ], [ -116.353595, 43.573385 ], [ -116.353593, 43.573384 ], [ -116.353591, 43.573384 ], [ -116.353588, 43.573383 ], [ -116.353586, 43.573383 ], [ -116.353584, 43.573383 ], [ -116.353582, 43.573382 ], [ -116.35358, 43.573382 ], [ -116.353578, 43.573382 ], [ -116.353577, 43.573381 ], [ -116.353575, 43.573381 ], [ -116.353573, 43.573381 ], [ -116.353571, 43.57338 ], [ -116.353569, 43.57338 ], [ -116.353567, 43.57338 ], [ -116.353565, 43.573379 ], [ -116.353563, 43.573379 ], [ -116.353561, 43.573379 ], [ -116.35356, 43.573379 ], [ -116.353558, 43.573378 ], [ -116.353555, 43.573378 ], [ -116.353553, 43.573378 ], [ -116.353551, 43.573377 ], [ -116.353549, 43.573377 ], [ -116.353547, 43.573377 ], [ -116.353545, 43.573377 ], [ -116.353544, 43.573377 ], [ -116.353542, 43.573377 ], [ -116.35354, 43.573376 ], [ -116.353538, 43.573376 ], [ -116.353536, 43.573376 ], [ -116.353534, 43.573376 ], [ -116.353532, 43.573376 ], [ -116.35353, 43.573376 ], [ -116.353528, 43.573376 ], [ -116.353527, 43.573376 ], [ -116.353525, 43.573376 ], [ -116.353523, 43.573376 ], [ -116.353521, 43.573376 ], [ -116.353519, 43.573375 ], [ -116.353517, 43.573375 ], [ -116.353515, 43.573375 ], [ -116.353513, 43.573375 ], [ -116.353511, 43.573375 ], [ -116.35351, 43.573375 ], [ -116.353508, 43.573375 ], [ -116.353506, 43.573375 ], [ -116.353504, 43.573375 ], [ -116.353501, 43.573375 ], [ -116.35302, 43.573386 ], [ -116.353018, 43.573386 ], [ -116.353016, 43.573386 ], [ -116.353014, 43.573386 ], [ -116.353013, 43.573387 ], [ -116.353011, 43.573387 ], [ -116.353009, 43.573387 ], [ -116.353007, 43.573387 ], [ -116.353005, 43.573387 ], [ -116.353003, 43.573387 ], [ -116.353001, 43.573387 ], [ -116.352999, 43.573387 ], [ -116.352998, 43.573388 ], [ -116.352996, 43.573388 ], [ -116.352994, 43.573388 ], [ -116.352992, 43.573388 ], [ -116.35299, 43.573388 ], [ -116.352988, 43.573388 ], [ -116.352986, 43.573389 ], [ -116.352984, 43.573389 ], [ -116.352982, 43.573389 ], [ -116.352981, 43.573389 ], [ -116.352979, 43.57339 ], [ -116.352977, 43.57339 ], [ -116.352974, 43.57339 ], [ -116.352972, 43.573391 ], [ -116.35297, 43.573391 ], [ -116.352968, 43.573391 ], [ -116.352966, 43.573391 ], [ -116.352965, 43.573392 ], [ -116.352963, 43.573392 ], [ -116.352961, 43.573392 ], [ -116.352959, 43.573393 ], [ -116.352957, 43.573393 ], [ -116.352955, 43.573393 ], [ -116.352953, 43.573394 ], [ -116.352951, 43.573394 ], [ -116.352949, 43.573394 ], [ -116.352948, 43.573395 ], [ -116.352946, 43.573395 ], [ -116.35271, 43.573448 ], [ -116.352684, 43.573383 ], [ -116.352681, 43.573527 ], [ -116.352573, 43.573551 ], [ -116.352555, 43.573554 ], [ -116.352543, 43.573556 ], [ -116.352532, 43.573557 ], [ -116.352516, 43.573559 ], [ -116.3525, 43.57356 ], [ -116.352489, 43.573561 ], [ -116.352476, 43.573561 ], [ -116.352459, 43.573561 ], [ -116.352446, 43.57356 ], [ -116.352435, 43.57356 ], [ -116.35242, 43.573558 ], [ -116.352406, 43.573557 ], [ -116.352389, 43.573554 ], [ -116.352371, 43.573551 ], [ -116.35236, 43.573549 ], [ -116.352349, 43.573546 ], [ -116.351957, 43.573444 ], [ -116.352223, 43.574557 ], [ -116.352594, 43.574735 ], [ -116.35257, 43.574817 ], [ -116.352569, 43.574818 ], [ -116.353484, 43.574818 ], [ -116.353484, 43.574817 ] ], [ [ -116.356922, 43.575727 ], [ -116.356925, 43.573914 ], [ -116.355642, 43.573914 ], [ -116.35564, 43.575726 ], [ -116.354395, 43.575727 ], [ -116.354402, 43.576406 ], [ -116.354538, 43.576437 ], [ -116.35527, 43.576638 ], [ -116.355683, 43.576722 ], [ -116.356319, 43.576759 ], [ -116.356802, 43.576588 ], [ -116.356946, 43.576594 ], [ -116.357243, 43.5767 ], [ -116.357462, 43.576756 ], [ -116.358149, 43.576933 ], [ -116.35864, 43.577063 ], [ -116.359089, 43.577028 ], [ -116.359335, 43.576884 ], [ -116.359462, 43.576859 ], [ -116.359454, 43.575727 ], [ -116.356922, 43.575727 ] ], [ [ -116.354438, 43.561232 ], [ -116.35638, 43.561228 ], [ -116.357084, 43.561227 ], [ -116.357312, 43.561227 ], [ -116.358129, 43.561226 ], [ -116.35945, 43.561225 ], [ -116.35945, 43.561293 ], [ -116.360914, 43.561291 ], [ -116.360921, 43.561291 ], [ -116.360915, 43.561354 ], [ -116.360902, 43.562588 ], [ -116.360902, 43.562589 ], [ -116.360961, 43.562588 ], [ -116.361938, 43.562586 ], [ -116.361939, 43.561537 ], [ -116.361939, 43.561536 ], [ -116.361939, 43.561402 ], [ -116.361936, 43.561222 ], [ -116.361731, 43.561221 ], [ -116.36137, 43.560729 ], [ -116.36128, 43.560614 ], [ -116.361182, 43.560503 ], [ -116.361076, 43.560396 ], [ -116.360196, 43.559556 ], [ -116.358102, 43.557556 ], [ -116.357965, 43.557556 ], [ -116.357515, 43.557123 ], [ -116.356758, 43.556625 ], [ -116.356614, 43.55653 ], [ -116.355776, 43.555981 ], [ -116.355023, 43.555484 ], [ -116.355455, 43.555486 ], [ -116.355451, 43.554785 ], [ -116.354587, 43.554786 ], [ -116.354408, 43.554786 ], [ -116.354421, 43.557559 ], [ -116.35442, 43.557561 ], [ -116.354429, 43.559425 ], [ -116.35443, 43.55961 ], [ -116.354434, 43.560271 ], [ -116.354433, 43.560271 ], [ -116.354438, 43.561232 ] ], [ [ -116.359547, 43.59265 ], [ -116.359541, 43.592216 ], [ -116.359536, 43.591856 ], [ -116.359536, 43.591783 ], [ -116.359535, 43.591684 ], [ -116.359529, 43.59135 ], [ -116.359523, 43.590916 ], [ -116.359518, 43.590559 ], [ -116.359517, 43.590476 ], [ -116.359516, 43.590435 ], [ -116.359516, 43.590366 ], [ -116.3545, 43.590408 ], [ -116.354515, 43.591014 ], [ -116.354553, 43.592442 ], [ -116.354786, 43.592409 ], [ -116.354776, 43.592034 ], [ -116.354768, 43.591725 ], [ -116.354764, 43.591564 ], [ -116.354754, 43.591172 ], [ -116.35474, 43.590646 ], [ -116.354862, 43.590554 ], [ -116.355642, 43.590548 ], [ -116.356257, 43.590534 ], [ -116.356759, 43.590522 ], [ -116.356948, 43.590521 ], [ -116.357533, 43.590516 ], [ -116.357623, 43.590515 ], [ -116.357674, 43.590512 ], [ -116.358191, 43.59051 ], [ -116.358191, 43.59057 ], [ -116.358198, 43.590975 ], [ -116.357629, 43.590979 ], [ -116.357629, 43.59098 ], [ -116.357178, 43.590984 ], [ -116.357059, 43.590982 ], [ -116.35708, 43.592592 ], [ -116.358315, 43.592753 ], [ -116.359554, 43.59318 ], [ -116.359553, 43.593083 ], [ -116.359548, 43.592705 ], [ -116.359547, 43.59265 ] ], [ [ -116.362646, 43.608085 ], [ -116.362655, 43.605565 ], [ -116.362656, 43.604929 ], [ -116.363063, 43.604927 ], [ -116.364535, 43.604921 ], [ -116.364536, 43.605269 ], [ -116.364911, 43.605266 ], [ -116.364913, 43.604916 ], [ -116.369527, 43.604896 ], [ -116.369527, 43.604788 ], [ -116.369531, 43.601251 ], [ -116.364531, 43.601275 ], [ -116.362676, 43.601285 ], [ -116.362676, 43.601284 ], [ -116.362648, 43.601285 ], [ -116.360887, 43.601294 ], [ -116.360887, 43.601293 ], [ -116.360864, 43.599997 ], [ -116.360864, 43.599996 ], [ -116.361746, 43.600068 ], [ -116.361747, 43.600068 ], [ -116.361836, 43.599849 ], [ -116.362705, 43.599953 ], [ -116.362707, 43.599954 ], [ -116.362707, 43.599874 ], [ -116.36453, 43.600107 ], [ -116.364528, 43.597631 ], [ -116.374534, 43.59758 ], [ -116.37453, 43.599407 ], [ -116.379537, 43.599352 ], [ -116.37954, 43.599352 ], [ -116.379543, 43.597525 ], [ -116.37695, 43.597554 ], [ -116.376581, 43.596951 ], [ -116.37658, 43.596951 ], [ -116.37454, 43.596974 ], [ -116.37454, 43.596973 ], [ -116.374538, 43.597169 ], [ -116.373406, 43.597175 ], [ -116.373407, 43.596764 ], [ -116.374539, 43.596758 ], [ -116.37454, 43.596759 ], [ -116.374541, 43.596339 ], [ -116.374541, 43.596337 ], [ -116.374541, 43.596283 ], [ -116.374541, 43.596201 ], [ -116.374541, 43.595949 ], [ -116.374541, 43.59586 ], [ -116.373639, 43.595864 ], [ -116.37355, 43.595933 ], [ -116.373506, 43.595908 ], [ -116.373458, 43.595887 ], [ -116.373479, 43.595852 ], [ -116.373494, 43.595815 ], [ -116.373503, 43.595777 ], [ -116.373507, 43.595739 ], [ -116.373514, 43.595199 ], [ -116.374543, 43.595193 ], [ -116.374543, 43.59476 ], [ -116.374528, 43.59476 ], [ -116.374455, 43.594761 ], [ -116.372902, 43.594768 ], [ -116.372902, 43.594494 ], [ -116.374544, 43.594486 ], [ -116.374551, 43.593801 ], [ -116.37237, 43.593772 ], [ -116.369461, 43.593826 ], [ -116.367173, 43.593986 ], [ -116.364902, 43.594254 ], [ -116.36453, 43.594329 ], [ -116.364531, 43.595454 ], [ -116.363764, 43.595451 ], [ -116.363764, 43.595519 ], [ -116.362154, 43.595513 ], [ -116.362242, 43.595875 ], [ -116.360236, 43.596096 ], [ -116.359596, 43.596175 ], [ -116.359624, 43.597661 ], [ -116.360809, 43.597655 ], [ -116.362572, 43.597638 ], [ -116.362671, 43.597651 ], [ -116.362676, 43.597678 ], [ -116.362678, 43.597706 ], [ -116.362677, 43.597733 ], [ -116.362674, 43.59776 ], [ -116.362668, 43.597787 ], [ -116.362658, 43.597814 ], [ -116.362251, 43.598847 ], [ -116.36216, 43.598829 ], [ -116.36063, 43.598487 ], [ -116.36006, 43.599938 ], [ -116.359173, 43.599862 ], [ -116.359187, 43.601302 ], [ -116.358587, 43.601305 ], [ -116.356239, 43.601316 ], [ -116.354763, 43.601327 ], [ -116.354763, 43.601336 ], [ -116.354763, 43.601346 ], [ -116.354763, 43.601357 ], [ -116.354763, 43.601368 ], [ -116.354763, 43.601379 ], [ -116.354763, 43.60139 ], [ -116.354763, 43.601401 ], [ -116.354764, 43.601412 ], [ -116.354764, 43.601423 ], [ -116.354764, 43.601434 ], [ -116.354764, 43.601445 ], [ -116.354764, 43.601456 ], [ -116.354764, 43.601467 ], [ -116.354764, 43.601478 ], [ -116.354764, 43.601488 ], [ -116.35479, 43.602812 ], [ -116.354806, 43.603694 ], [ -116.354962, 43.603721 ], [ -116.355071, 43.603739 ], [ -116.355289, 43.603773 ], [ -116.35543, 43.603799 ], [ -116.355632, 43.60391 ], [ -116.355798, 43.604 ], [ -116.356115, 43.604173 ], [ -116.356517, 43.604392 ], [ -116.356851, 43.604573 ], [ -116.356914, 43.604608 ], [ -116.357126, 43.604468 ], [ -116.35712, 43.603793 ], [ -116.358102, 43.603789 ], [ -116.358103, 43.603789 ], [ -116.358103, 43.603788 ], [ -116.358124, 43.603789 ], [ -116.358953, 43.603809 ], [ -116.359239, 43.603816 ], [ -116.359451, 43.603821 ], [ -116.359452, 43.603821 ], [ -116.359652, 43.603825 ], [ -116.359673, 43.603826 ], [ -116.359676, 43.604144 ], [ -116.359683, 43.604831 ], [ -116.359681, 43.60494 ], [ -116.359824, 43.604942 ], [ -116.359828, 43.605737 ], [ -116.3604, 43.605735 ], [ -116.360398, 43.605707 ], [ -116.360795, 43.605796 ], [ -116.360779, 43.60579 ], [ -116.360768, 43.604937 ], [ -116.361145, 43.604933 ], [ -116.361158, 43.605877 ], [ -116.361149, 43.605876 ], [ -116.361293, 43.605908 ], [ -116.36171, 43.605913 ], [ -116.361832, 43.605937 ], [ -116.361898, 43.606021 ], [ -116.36196, 43.606426 ], [ -116.362211, 43.608074 ], [ -116.362212, 43.608079 ], [ -116.362646, 43.608085 ] ], [ [ -116.360182, 43.62991 ], [ -116.360373, 43.629298 ], [ -116.359624, 43.629173 ], [ -116.359646, 43.629108 ], [ -116.359785, 43.62866 ], [ -116.360709, 43.628813 ], [ -116.360801, 43.628828 ], [ -116.36064, 43.629342 ], [ -116.360641, 43.629342 ], [ -116.360959, 43.629394 ], [ -116.36097, 43.629396 ], [ -116.360981, 43.629398 ], [ -116.361011, 43.629404 ], [ -116.361037, 43.62941 ], [ -116.361048, 43.629413 ], [ -116.361059, 43.629416 ], [ -116.36107, 43.629418 ], [ -116.361084, 43.629423 ], [ -116.361098, 43.629427 ], [ -116.361113, 43.629431 ], [ -116.361127, 43.629436 ], [ -116.361138, 43.62944 ], [ -116.361157, 43.629447 ], [ -116.361629, 43.628782 ], [ -116.362317, 43.628895 ], [ -116.362313, 43.628028 ], [ -116.360973, 43.628029 ], [ -116.360972, 43.628045 ], [ -116.360971, 43.628056 ], [ -116.36097, 43.628072 ], [ -116.36097, 43.628083 ], [ -116.360969, 43.628094 ], [ -116.360968, 43.628105 ], [ -116.360967, 43.628115 ], [ -116.360966, 43.628126 ], [ -116.360965, 43.628137 ], [ -116.360964, 43.628148 ], [ -116.360963, 43.628159 ], [ -116.360962, 43.628169 ], [ -116.360961, 43.62818 ], [ -116.360959, 43.628191 ], [ -116.360958, 43.628202 ], [ -116.360957, 43.628213 ], [ -116.360955, 43.628221 ], [ -116.360954, 43.628231 ], [ -116.360953, 43.62824 ], [ -116.360952, 43.628248 ], [ -116.36095, 43.628258 ], [ -116.360949, 43.628266 ], [ -116.360947, 43.628275 ], [ -116.360945, 43.628288 ], [ -116.360943, 43.628304 ], [ -116.36094, 43.628316 ], [ -116.359468, 43.628314 ], [ -116.359467, 43.628314 ], [ -116.359466, 43.628485 ], [ -116.359238, 43.628484 ], [ -116.358305, 43.628479 ], [ -116.35747, 43.628474 ], [ -116.356828, 43.628471 ], [ -116.356893, 43.629148 ], [ -116.357161, 43.629121 ], [ -116.357841, 43.629053 ], [ -116.357854, 43.62912 ], [ -116.357961, 43.629687 ], [ -116.358655, 43.629577 ], [ -116.358744, 43.629597 ], [ -116.35947, 43.629764 ], [ -116.360175, 43.629935 ], [ -116.360182, 43.62991 ] ], [ [ -116.369506, 43.633809 ], [ -116.369506, 43.633109 ], [ -116.36883, 43.633111 ], [ -116.368828, 43.633606 ], [ -116.368828, 43.633675 ], [ -116.367358, 43.633678 ], [ -116.365759, 43.633682 ], [ -116.36576, 43.632009 ], [ -116.364496, 43.632012 ], [ -116.364497, 43.631123 ], [ -116.364498, 43.630308 ], [ -116.364496, 43.630308 ], [ -116.364497, 43.630247 ], [ -116.364497, 43.630246 ], [ -116.364498, 43.629266 ], [ -116.362322, 43.629281 ], [ -116.362321, 43.629236 ], [ -116.362319, 43.629033 ], [ -116.361433, 43.629611 ], [ -116.361424, 43.629603 ], [ -116.361416, 43.629597 ], [ -116.361406, 43.629588 ], [ -116.361398, 43.629582 ], [ -116.361388, 43.629574 ], [ -116.361377, 43.629565 ], [ -116.361369, 43.62956 ], [ -116.361369, 43.629559 ], [ -116.361361, 43.629553 ], [ -116.36135, 43.629546 ], [ -116.361339, 43.629538 ], [ -116.361326, 43.629531 ], [ -116.361318, 43.629525 ], [ -116.361303, 43.629516 ], [ -116.361291, 43.629509 ], [ -116.361279, 43.629502 ], [ -116.36127, 43.629497 ], [ -116.361269, 43.629497 ], [ -116.36126, 43.629492 ], [ -116.361241, 43.629483 ], [ -116.361232, 43.629478 ], [ -116.361222, 43.629474 ], [ -116.361212, 43.629469 ], [ -116.361199, 43.629464 ], [ -116.360668, 43.630014 ], [ -116.360633, 43.63005 ], [ -116.361501, 43.630307 ], [ -116.361511, 43.630294 ], [ -116.361523, 43.630277 ], [ -116.361534, 43.630261 ], [ -116.361545, 43.630244 ], [ -116.361555, 43.630226 ], [ -116.361565, 43.630208 ], [ -116.361573, 43.630191 ], [ -116.36158, 43.630174 ], [ -116.361588, 43.630156 ], [ -116.361594, 43.630137 ], [ -116.3616, 43.630119 ], [ -116.361605, 43.6301 ], [ -116.361609, 43.630082 ], [ -116.361611, 43.630063 ], [ -116.361614, 43.630044 ], [ -116.361616, 43.630026 ], [ -116.361616, 43.630008 ], [ -116.361617, 43.62999 ], [ -116.361616, 43.629973 ], [ -116.361615, 43.629955 ], [ -116.361613, 43.629936 ], [ -116.36161, 43.629918 ], [ -116.362322, 43.629821 ], [ -116.362329, 43.631128 ], [ -116.363694, 43.631125 ], [ -116.363693, 43.632539 ], [ -116.363951, 43.632526 ], [ -116.363963, 43.633685 ], [ -116.361668, 43.633691 ], [ -116.36167, 43.63282 ], [ -116.361066, 43.632821 ], [ -116.361068, 43.631991 ], [ -116.362164, 43.632001 ], [ -116.361513, 43.631316 ], [ -116.361368, 43.631252 ], [ -116.361919, 43.630465 ], [ -116.361498, 43.630311 ], [ -116.361492, 43.630317 ], [ -116.361486, 43.630324 ], [ -116.36148, 43.630332 ], [ -116.361473, 43.630339 ], [ -116.361465, 43.630348 ], [ -116.361457, 43.630355 ], [ -116.361449, 43.630364 ], [ -116.361441, 43.630371 ], [ -116.361434, 43.630378 ], [ -116.361423, 43.630387 ], [ -116.361412, 43.630397 ], [ -116.361401, 43.630406 ], [ -116.36139, 43.630415 ], [ -116.361381, 43.630422 ], [ -116.361373, 43.630428 ], [ -116.361362, 43.630436 ], [ -116.361352, 43.630443 ], [ -116.361344, 43.630449 ], [ -116.361335, 43.630454 ], [ -116.361327, 43.63046 ], [ -116.361315, 43.630467 ], [ -116.361303, 43.630474 ], [ -116.361294, 43.63048 ], [ -116.361281, 43.630487 ], [ -116.361267, 43.630494 ], [ -116.361252, 43.630502 ], [ -116.361219, 43.630518 ], [ -116.361193, 43.630533 ], [ -116.361166, 43.630547 ], [ -116.361141, 43.630561 ], [ -116.361114, 43.630576 ], [ -116.361089, 43.630592 ], [ -116.361065, 43.630607 ], [ -116.36104, 43.630624 ], [ -116.361016, 43.63064 ], [ -116.360992, 43.630656 ], [ -116.360969, 43.630673 ], [ -116.360945, 43.63069 ], [ -116.360923, 43.630708 ], [ -116.360901, 43.630726 ], [ -116.360879, 43.630744 ], [ -116.360858, 43.630762 ], [ -116.360837, 43.63078 ], [ -116.360817, 43.630799 ], [ -116.360797, 43.630818 ], [ -116.360777, 43.630838 ], [ -116.360758, 43.630857 ], [ -116.36074, 43.630877 ], [ -116.360722, 43.630897 ], [ -116.360704, 43.630917 ], [ -116.360687, 43.630938 ], [ -116.360671, 43.630958 ], [ -116.360655, 43.630979 ], [ -116.360639, 43.631001 ], [ -116.360624, 43.631022 ], [ -116.360609, 43.631043 ], [ -116.360595, 43.631065 ], [ -116.360582, 43.631087 ], [ -116.360569, 43.631109 ], [ -116.360556, 43.631131 ], [ -116.360545, 43.631153 ], [ -116.360533, 43.631176 ], [ -116.360523, 43.631198 ], [ -116.360513, 43.631221 ], [ -116.360503, 43.631244 ], [ -116.360493, 43.631267 ], [ -116.360485, 43.63129 ], [ -116.360477, 43.631313 ], [ -116.36047, 43.631337 ], [ -116.360462, 43.63136 ], [ -116.360455, 43.63139 ], [ -116.359473, 43.63126 ], [ -116.359476, 43.632763 ], [ -116.360417, 43.632764 ], [ -116.360417, 43.632903 ], [ -116.360416, 43.632915 ], [ -116.360415, 43.632929 ], [ -116.360414, 43.632942 ], [ -116.360413, 43.632951 ], [ -116.360412, 43.632961 ], [ -116.36029, 43.63371 ], [ -116.360285, 43.633739 ], [ -116.360282, 43.633761 ], [ -116.36027, 43.633831 ], [ -116.360471, 43.633831 ], [ -116.367001, 43.633816 ], [ -116.367341, 43.633815 ], [ -116.367341, 43.633817 ], [ -116.367756, 43.633814 ], [ -116.369506, 43.633809 ] ], [ [ -116.36368, 43.577039 ], [ -116.36452, 43.577758 ], [ -116.36452, 43.577388 ], [ -116.36452, 43.57726 ], [ -116.36452, 43.575792 ], [ -116.365123, 43.575792 ], [ -116.36716, 43.575792 ], [ -116.367161, 43.575724 ], [ -116.369576, 43.575724 ], [ -116.371019, 43.575724 ], [ -116.371051, 43.575724 ], [ -116.371025, 43.575512 ], [ -116.370852, 43.57536 ], [ -116.370852, 43.575355 ], [ -116.370197, 43.574754 ], [ -116.369559, 43.573982 ], [ -116.369549, 43.572926 ], [ -116.369318, 43.572875 ], [ -116.369281, 43.572565 ], [ -116.36928, 43.57255 ], [ -116.369279, 43.572539 ], [ -116.369277, 43.572529 ], [ -116.369276, 43.572516 ], [ -116.369274, 43.572505 ], [ -116.369271, 43.572494 ], [ -116.369268, 43.572482 ], [ -116.369265, 43.572471 ], [ -116.369261, 43.572459 ], [ -116.369257, 43.572449 ], [ -116.369253, 43.572441 ], [ -116.369249, 43.572432 ], [ -116.369243, 43.572421 ], [ -116.369236, 43.572411 ], [ -116.369231, 43.572401 ], [ -116.369225, 43.572392 ], [ -116.369217, 43.57238 ], [ -116.36921, 43.572371 ], [ -116.369205, 43.572362 ], [ -116.3692, 43.572355 ], [ -116.369194, 43.572345 ], [ -116.369189, 43.572337 ], [ -116.369183, 43.572328 ], [ -116.369175, 43.572316 ], [ -116.369168, 43.572305 ], [ -116.369161, 43.572297 ], [ -116.369156, 43.57229 ], [ -116.369151, 43.572283 ], [ -116.369145, 43.572275 ], [ -116.369144, 43.572275 ], [ -116.369139, 43.572268 ], [ -116.369132, 43.572259 ], [ -116.369093, 43.572216 ], [ -116.369086, 43.572209 ], [ -116.369077, 43.572198 ], [ -116.369068, 43.572188 ], [ -116.369061, 43.57218 ], [ -116.369055, 43.572173 ], [ -116.369055, 43.572172 ], [ -116.369047, 43.572162 ], [ -116.36904, 43.572151 ], [ -116.369031, 43.572141 ], [ -116.369025, 43.572131 ], [ -116.369019, 43.572123 ], [ -116.369014, 43.572116 ], [ -116.369008, 43.572108 ], [ -116.369004, 43.572101 ], [ -116.364499, 43.5721 ], [ -116.364488, 43.56924 ], [ -116.364083, 43.569528 ], [ -116.364073, 43.569535 ], [ -116.364064, 43.569542 ], [ -116.364055, 43.569548 ], [ -116.364046, 43.569555 ], [ -116.364032, 43.569565 ], [ -116.364023, 43.569573 ], [ -116.364015, 43.569579 ], [ -116.364006, 43.569585 ], [ -116.363995, 43.569594 ], [ -116.363981, 43.569605 ], [ -116.36397, 43.569613 ], [ -116.363962, 43.56962 ], [ -116.36395, 43.569629 ], [ -116.36394, 43.569638 ], [ -116.363932, 43.569644 ], [ -116.363925, 43.56965 ], [ -116.363916, 43.569658 ], [ -116.363904, 43.569668 ], [ -116.363892, 43.569679 ], [ -116.363882, 43.569693 ], [ -116.363874, 43.569701 ], [ -116.363866, 43.569707 ], [ -116.363858, 43.569714 ], [ -116.363849, 43.569722 ], [ -116.363838, 43.569732 ], [ -116.36383, 43.569739 ], [ -116.363823, 43.569745 ], [ -116.363815, 43.569753 ], [ -116.363806, 43.569761 ], [ -116.363798, 43.569769 ], [ -116.363788, 43.569778 ], [ -116.36378, 43.569786 ], [ -116.36377, 43.569795 ], [ -116.363759, 43.569806 ], [ -116.363749, 43.569816 ], [ -116.36374, 43.569825 ], [ -116.363734, 43.569831 ], [ -116.363728, 43.569838 ], [ -116.36372, 43.569846 ], [ -116.363714, 43.569853 ], [ -116.363706, 43.569862 ], [ -116.36269, 43.570989 ], [ -116.362682, 43.570997 ], [ -116.36267, 43.571011 ], [ -116.362661, 43.571021 ], [ -116.362653, 43.57103 ], [ -116.362644, 43.571041 ], [ -116.362636, 43.57105 ], [ -116.36263, 43.571057 ], [ -116.362624, 43.571064 ], [ -116.362618, 43.571073 ], [ -116.362609, 43.571083 ], [ -116.362603, 43.571091 ], [ -116.362596, 43.571099 ], [ -116.362587, 43.571111 ], [ -116.362579, 43.571122 ], [ -116.362571, 43.571131 ], [ -116.362565, 43.571142 ], [ -116.362559, 43.571153 ], [ -116.362552, 43.571164 ], [ -116.362545, 43.571173 ], [ -116.36254, 43.57118 ], [ -116.362531, 43.571193 ], [ -116.362521, 43.571207 ], [ -116.362514, 43.571218 ], [ -116.362507, 43.571227 ], [ -116.3625, 43.571237 ], [ -116.362496, 43.571244 ], [ -116.36249, 43.571252 ], [ -116.362484, 43.571262 ], [ -116.362478, 43.571271 ], [ -116.362472, 43.57128 ], [ -116.362467, 43.571289 ], [ -116.362462, 43.571297 ], [ -116.362457, 43.571306 ], [ -116.361991, 43.572102 ], [ -116.361973, 43.572102 ], [ -116.361973, 43.572133 ], [ -116.36057, 43.574535 ], [ -116.360565, 43.574544 ], [ -116.360559, 43.574555 ], [ -116.360554, 43.574566 ], [ -116.36055, 43.574575 ], [ -116.360545, 43.574586 ], [ -116.36054, 43.574597 ], [ -116.360537, 43.574606 ], [ -116.360534, 43.574614 ], [ -116.36053, 43.574624 ], [ -116.360527, 43.574635 ], [ -116.360524, 43.574645 ], [ -116.360522, 43.574654 ], [ -116.360519, 43.574663 ], [ -116.360518, 43.574671 ], [ -116.360516, 43.574681 ], [ -116.360513, 43.574693 ], [ -116.360512, 43.574707 ], [ -116.360512, 43.574717 ], [ -116.360519, 43.574727 ], [ -116.36053, 43.574737 ], [ -116.36054, 43.574748 ], [ -116.360541, 43.574758 ], [ -116.360539, 43.574768 ], [ -116.360538, 43.57478 ], [ -116.360537, 43.574789 ], [ -116.360536, 43.5748 ], [ -116.360536, 43.574811 ], [ -116.360536, 43.57482 ], [ -116.360536, 43.57483 ], [ -116.360536, 43.57484 ], [ -116.360537, 43.574848 ], [ -116.360538, 43.574856 ], [ -116.360539, 43.574865 ], [ -116.36054, 43.574874 ], [ -116.360542, 43.574882 ], [ -116.360543, 43.57489 ], [ -116.360545, 43.5749 ], [ -116.360549, 43.574912 ], [ -116.360551, 43.57492 ], [ -116.360555, 43.574928 ], [ -116.360749, 43.575324 ], [ -116.360752, 43.575331 ], [ -116.360757, 43.57534 ], [ -116.360763, 43.575351 ], [ -116.360768, 43.575359 ], [ -116.360775, 43.57537 ], [ -116.360781, 43.57538 ], [ -116.360787, 43.57539 ], [ -116.360794, 43.5754 ], [ -116.360799, 43.575408 ], [ -116.360806, 43.575416 ], [ -116.360814, 43.575428 ], [ -116.36082, 43.575435 ], [ -116.360827, 43.575444 ], [ -116.360837, 43.575455 ], [ -116.360844, 43.575464 ], [ -116.360851, 43.575471 ], [ -116.360858, 43.575479 ], [ -116.360867, 43.575487 ], [ -116.360879, 43.575496 ], [ -116.360895, 43.575505 ], [ -116.360895, 43.575506 ], [ -116.36091, 43.575511 ], [ -116.360928, 43.575515 ], [ -116.36094, 43.575522 ], [ -116.360947, 43.575528 ], [ -116.360948, 43.575528 ], [ -116.360955, 43.575535 ], [ -116.360962, 43.575542 ], [ -116.36097, 43.575551 ], [ -116.360977, 43.575557 ], [ -116.360985, 43.575566 ], [ -116.360993, 43.575574 ], [ -116.361001, 43.575581 ], [ -116.36101, 43.57559 ], [ -116.361019, 43.575598 ], [ -116.361029, 43.575606 ], [ -116.361037, 43.575614 ], [ -116.361045, 43.575621 ], [ -116.361053, 43.575627 ], [ -116.361063, 43.575634 ], [ -116.361074, 43.57564 ], [ -116.361083, 43.575645 ], [ -116.361094, 43.575651 ], [ -116.361107, 43.575657 ], [ -116.361251, 43.575724 ], [ -116.362165, 43.576164 ], [ -116.363206, 43.576719 ], [ -116.363219, 43.576726 ], [ -116.363229, 43.576731 ], [ -116.363238, 43.576736 ], [ -116.363249, 43.576742 ], [ -116.36326, 43.576748 ], [ -116.363271, 43.576755 ], [ -116.363279, 43.576759 ], [ -116.363288, 43.576765 ], [ -116.363302, 43.576773 ], [ -116.363316, 43.576781 ], [ -116.363327, 43.576787 ], [ -116.363338, 43.576794 ], [ -116.363346, 43.576799 ], [ -116.363359, 43.576807 ], [ -116.363372, 43.576815 ], [ -116.363373, 43.576815 ], [ -116.363384, 43.576822 ], [ -116.363384, 43.576823 ], [ -116.363398, 43.576832 ], [ -116.36341, 43.576839 ], [ -116.36342, 43.576845 ], [ -116.36343, 43.576852 ], [ -116.363441, 43.576859 ], [ -116.36345, 43.576865 ], [ -116.363459, 43.576871 ], [ -116.363468, 43.576877 ], [ -116.363476, 43.576883 ], [ -116.363485, 43.576889 ], [ -116.363497, 43.576898 ], [ -116.363508, 43.576906 ], [ -116.363521, 43.576915 ], [ -116.36353, 43.576921 ], [ -116.363537, 43.576926 ], [ -116.363544, 43.576932 ], [ -116.363552, 43.576938 ], [ -116.363561, 43.576944 ], [ -116.363573, 43.576953 ], [ -116.363583, 43.576961 ], [ -116.363593, 43.576968 ], [ -116.363604, 43.576977 ], [ -116.363616, 43.576986 ], [ -116.363626, 43.576995 ], [ -116.363634, 43.577001 ], [ -116.363644, 43.577009 ], [ -116.363654, 43.577017 ], [ -116.363662, 43.577024 ], [ -116.36367, 43.577031 ], [ -116.36368, 43.577039 ] ], [ [ -116.374498, 43.644165 ], [ -116.374499, 43.643827 ], [ -116.374502, 43.64293 ], [ -116.373416, 43.642929 ], [ -116.373418, 43.642038 ], [ -116.374505, 43.642039 ], [ -116.374505, 43.642915 ], [ -116.374629, 43.642914 ], [ -116.379483, 43.642902 ], [ -116.379485, 43.64199 ], [ -116.379069, 43.641991 ], [ -116.378678, 43.641993 ], [ -116.378068, 43.641995 ], [ -116.37763, 43.641995 ], [ -116.376991, 43.641997 ], [ -116.376994, 43.641087 ], [ -116.374509, 43.641093 ], [ -116.366988, 43.641091 ], [ -116.366736, 43.641091 ], [ -116.365936, 43.641091 ], [ -116.365124, 43.641091 ], [ -116.364823, 43.641091 ], [ -116.364823, 43.641093 ], [ -116.364482, 43.641093 ], [ -116.364463, 43.641094 ], [ -116.36448, 43.641094 ], [ -116.364473, 43.644715 ], [ -116.374498, 43.644741 ], [ -116.374496, 43.645217 ], [ -116.376421, 43.645193 ], [ -116.376422, 43.644734 ], [ -116.375457, 43.644737 ], [ -116.37541, 43.644737 ], [ -116.374623, 43.644739 ], [ -116.374496, 43.644739 ], [ -116.374498, 43.644165 ] ], [ [ -116.366693, 43.620674 ], [ -116.366696, 43.619628 ], [ -116.366698, 43.619628 ], [ -116.366698, 43.619608 ], [ -116.366699, 43.619608 ], [ -116.369438, 43.619608 ], [ -116.369436, 43.619442 ], [ -116.364509, 43.619468 ], [ -116.364509, 43.619469 ], [ -116.364507, 43.620685 ], [ -116.366693, 43.620674 ] ], [ [ -116.393943, 43.557364 ], [ -116.393869, 43.557365 ], [ -116.393868, 43.557365 ], [ -116.393865, 43.557932 ], [ -116.393848, 43.557933 ], [ -116.393866, 43.557932 ], [ -116.393863, 43.558624 ], [ -116.393862, 43.558624 ], [ -116.393851, 43.560986 ], [ -116.392343, 43.561009 ], [ -116.39023, 43.561042 ], [ -116.389024, 43.561053 ], [ -116.389022, 43.560985 ], [ -116.389018, 43.560857 ], [ -116.388904, 43.560587 ], [ -116.388851, 43.560399 ], [ -116.388889, 43.560178 ], [ -116.388858, 43.559009 ], [ -116.388835, 43.558106 ], [ -116.38752, 43.558249 ], [ -116.387523, 43.558239 ], [ -116.387521, 43.558212 ], [ -116.387512, 43.558186 ], [ -116.387497, 43.558161 ], [ -116.387477, 43.558139 ], [ -116.387452, 43.558119 ], [ -116.387326, 43.558034 ], [ -116.386771, 43.55775 ], [ -116.386669, 43.557701 ], [ -116.386564, 43.557656 ], [ -116.386456, 43.557615 ], [ -116.386345, 43.557579 ], [ -116.386231, 43.557547 ], [ -116.385831, 43.557444 ], [ -116.385772, 43.557414 ], [ -116.385737, 43.557405 ], [ -116.385044, 43.557143 ], [ -116.38441, 43.556938 ], [ -116.383901, 43.55676 ], [ -116.383511, 43.556643 ], [ -116.383307, 43.556591 ], [ -116.381419, 43.556322 ], [ -116.381198, 43.556284 ], [ -116.381093, 43.556243 ], [ -116.380572, 43.555885 ], [ -116.380442, 43.555822 ], [ -116.379323, 43.555408 ], [ -116.378883, 43.555136 ], [ -116.378247, 43.554719 ], [ -116.377932, 43.554559 ], [ -116.37763, 43.554434 ], [ -116.376438, 43.554055 ], [ -116.376136, 43.553958 ], [ -116.375805, 43.553852 ], [ -116.374708, 43.553859 ], [ -116.374617, 43.553859 ], [ -116.374603, 43.553238 ], [ -116.374456, 43.553107 ], [ -116.373143, 43.552351 ], [ -116.372243, 43.551989 ], [ -116.371478, 43.551956 ], [ -116.370372, 43.55173 ], [ -116.369484, 43.551018 ], [ -116.369524, 43.553861 ], [ -116.369524, 43.553864 ], [ -116.369521, 43.554169 ], [ -116.369516, 43.554655 ], [ -116.369513, 43.554991 ], [ -116.369503, 43.555235 ], [ -116.369481, 43.557532 ], [ -116.369481, 43.557535 ], [ -116.366962, 43.557542 ], [ -116.366953, 43.561209 ], [ -116.369411, 43.5612 ], [ -116.369446, 43.5612 ], [ -116.371946, 43.561196 ], [ -116.373537, 43.561194 ], [ -116.373557, 43.562154 ], [ -116.374456, 43.562152 ], [ -116.374485, 43.563457 ], [ -116.376969, 43.563437 ], [ -116.376996, 43.564809 ], [ -116.381608, 43.564773 ], [ -116.384439, 43.56475 ], [ -116.384435, 43.564443 ], [ -116.384432, 43.564292 ], [ -116.384432, 43.564291 ], [ -116.384433, 43.564291 ], [ -116.384665, 43.564499 ], [ -116.384732, 43.564559 ], [ -116.384733, 43.56456 ], [ -116.386293, 43.565418 ], [ -116.386402, 43.565478 ], [ -116.386524, 43.565545 ], [ -116.387331, 43.56587 ], [ -116.387891, 43.566064 ], [ -116.38946, 43.566564 ], [ -116.389472, 43.567659 ], [ -116.389477, 43.568148 ], [ -116.389478, 43.568337 ], [ -116.389479, 43.568337 ], [ -116.389541, 43.568336 ], [ -116.390093, 43.568332 ], [ -116.391116, 43.568323 ], [ -116.393003, 43.568304 ], [ -116.393529, 43.568299 ], [ -116.39383, 43.568296 ], [ -116.393841, 43.564499 ], [ -116.393906, 43.564499 ], [ -116.394741, 43.564498 ], [ -116.394808, 43.564496 ], [ -116.394875, 43.564492 ], [ -116.394876, 43.564492 ], [ -116.394975, 43.56448 ], [ -116.395072, 43.564462 ], [ -116.395165, 43.564444 ], [ -116.395259, 43.564432 ], [ -116.395355, 43.564426 ], [ -116.395451, 43.564427 ], [ -116.395702, 43.564429 ], [ -116.395952, 43.564429 ], [ -116.395952, 43.564649 ], [ -116.397284, 43.564655 ], [ -116.397957, 43.56505 ], [ -116.398012, 43.564656 ], [ -116.398119, 43.563893 ], [ -116.403796, 43.563927 ], [ -116.403796, 43.564677 ], [ -116.405051, 43.564678 ], [ -116.406296, 43.564679 ], [ -116.406296, 43.561114 ], [ -116.406363, 43.561048 ], [ -116.403798, 43.561048 ], [ -116.401949, 43.561037 ], [ -116.401848, 43.560965 ], [ -116.400675, 43.560141 ], [ -116.399931, 43.55908 ], [ -116.400604, 43.558338 ], [ -116.400202, 43.557391 ], [ -116.398837, 43.557384 ], [ -116.397238, 43.557377 ], [ -116.39417, 43.557363 ], [ -116.393943, 43.557364 ] ], [ [ -116.373053, 43.658675 ], [ -116.373054, 43.658478 ], [ -116.37357, 43.658484 ], [ -116.373575, 43.657551 ], [ -116.374473, 43.65755 ], [ -116.374488, 43.657481 ], [ -116.374482, 43.657481 ], [ -116.374487, 43.656397 ], [ -116.374486, 43.655662 ], [ -116.374397, 43.655663 ], [ -116.374305, 43.655663 ], [ -116.374192, 43.655663 ], [ -116.373531, 43.655665 ], [ -116.372239, 43.655667 ], [ -116.37198, 43.655668 ], [ -116.371978, 43.655668 ], [ -116.371983, 43.655669 ], [ -116.371976, 43.656574 ], [ -116.370543, 43.656576 ], [ -116.37055, 43.655672 ], [ -116.370564, 43.655671 ], [ -116.370547, 43.655671 ], [ -116.36748, 43.655679 ], [ -116.367477, 43.65628 ], [ -116.367476, 43.656659 ], [ -116.367474, 43.657158 ], [ -116.367472, 43.657659 ], [ -116.368023, 43.657744 ], [ -116.36892, 43.657742 ], [ -116.368941, 43.657741 ], [ -116.368944, 43.657741 ], [ -116.368947, 43.657741 ], [ -116.368963, 43.657739 ], [ -116.368967, 43.657739 ], [ -116.368971, 43.657738 ], [ -116.368985, 43.657735 ], [ -116.368989, 43.657734 ], [ -116.368993, 43.657733 ], [ -116.369008, 43.65773 ], [ -116.369011, 43.657729 ], [ -116.369014, 43.657728 ], [ -116.369031, 43.657722 ], [ -116.369031, 43.657721 ], [ -116.369032, 43.657721 ], [ -116.369033, 43.657721 ], [ -116.369051, 43.657712 ], [ -116.36907, 43.657702 ], [ -116.369375, 43.657465 ], [ -116.369423, 43.657427 ], [ -116.369427, 43.657424 ], [ -116.369431, 43.65742 ], [ -116.369437, 43.657413 ], [ -116.369441, 43.657405 ], [ -116.369444, 43.657396 ], [ -116.369444, 43.657388 ], [ -116.369444, 43.65738 ], [ -116.369443, 43.657378 ], [ -116.369438, 43.657365 ], [ -116.369523, 43.657336 ], [ -116.369526, 43.65734 ], [ -116.369556, 43.657382 ], [ -116.369594, 43.657421 ], [ -116.369638, 43.657455 ], [ -116.369689, 43.657484 ], [ -116.369633, 43.657543 ], [ -116.369622, 43.657538 ], [ -116.369609, 43.657535 ], [ -116.369596, 43.657533 ], [ -116.369582, 43.657533 ], [ -116.369568, 43.657535 ], [ -116.369555, 43.657538 ], [ -116.369543, 43.657543 ], [ -116.369532, 43.657549 ], [ -116.369247, 43.657784 ], [ -116.369242, 43.657788 ], [ -116.369198, 43.657816 ], [ -116.369149, 43.65784 ], [ -116.369095, 43.657858 ], [ -116.369039, 43.657871 ], [ -116.36898, 43.657878 ], [ -116.368921, 43.657879 ], [ -116.368337, 43.65788 ], [ -116.368377, 43.657907 ], [ -116.369246, 43.658496 ], [ -116.369772, 43.658852 ], [ -116.370428, 43.659304 ], [ -116.370435, 43.659304 ], [ -116.371528, 43.659304 ], [ -116.372279, 43.659304 ], [ -116.372544, 43.659304 ], [ -116.372635, 43.659304 ], [ -116.373044, 43.659304 ], [ -116.373046, 43.65903 ], [ -116.37305, 43.658796 ], [ -116.373047, 43.658796 ], [ -116.373053, 43.658675 ] ], [ [ -116.374565, 43.586387 ], [ -116.374566, 43.586234 ], [ -116.374439, 43.586235 ], [ -116.374285, 43.586235 ], [ -116.373858, 43.585889 ], [ -116.373322, 43.585452 ], [ -116.373093, 43.585266 ], [ -116.373092, 43.585266 ], [ -116.372942, 43.585143 ], [ -116.372817, 43.585145 ], [ -116.372549, 43.585146 ], [ -116.372199, 43.585148 ], [ -116.371881, 43.58515 ], [ -116.371867, 43.58515 ], [ -116.371565, 43.585152 ], [ -116.371263, 43.585154 ], [ -116.370961, 43.585155 ], [ -116.370659, 43.585157 ], [ -116.370588, 43.585158 ], [ -116.370357, 43.585159 ], [ -116.370055, 43.585161 ], [ -116.369754, 43.585162 ], [ -116.36944, 43.585164 ], [ -116.369086, 43.585164 ], [ -116.369097, 43.585201 ], [ -116.370844, 43.586113 ], [ -116.3711, 43.586661 ], [ -116.374565, 43.586643 ], [ -116.374565, 43.586387 ] ], [ [ -116.374594, 43.568469 ], [ -116.374559, 43.566865 ], [ -116.374541, 43.566044 ], [ -116.374537, 43.565887 ], [ -116.371102, 43.567377 ], [ -116.370094, 43.567818 ], [ -116.369738, 43.567974 ], [ -116.369536, 43.568062 ], [ -116.369542, 43.568471 ], [ -116.369539, 43.568471 ], [ -116.369539, 43.568472 ], [ -116.374594, 43.568469 ] ], [ [ -116.371924, 43.604028 ], [ -116.371604, 43.603259 ], [ -116.372468, 43.603255 ], [ -116.372468, 43.603249 ], [ -116.37247, 43.602441 ], [ -116.370779, 43.602449 ], [ -116.370775, 43.604782 ], [ -116.370775, 43.604891 ], [ -116.372022, 43.604886 ], [ -116.373615, 43.604878 ], [ -116.373616, 43.604755 ], [ -116.373617, 43.604371 ], [ -116.372313, 43.604377 ], [ -116.372195, 43.604291 ], [ -116.371924, 43.604028 ] ], [ [ -116.372922, 43.602225 ], [ -116.372925, 43.601372 ], [ -116.374526, 43.601364 ], [ -116.374526, 43.601226 ], [ -116.37078, 43.601245 ], [ -116.370779, 43.602236 ], [ -116.372922, 43.602225 ] ], [ [ -116.372572, 43.650199 ], [ -116.371653, 43.650196 ], [ -116.371654, 43.652023 ], [ -116.372047, 43.652023 ], [ -116.37235, 43.652023 ], [ -116.372652, 43.652022 ], [ -116.372954, 43.652023 ], [ -116.373256, 43.652023 ], [ -116.373596, 43.652024 ], [ -116.373993, 43.652024 ], [ -116.374306, 43.652025 ], [ -116.374393, 43.652025 ], [ -116.374499, 43.652025 ], [ -116.374497, 43.650204 ], [ -116.374391, 43.650204 ], [ -116.374372, 43.650204 ], [ -116.374353, 43.650204 ], [ -116.372573, 43.650199 ], [ -116.372572, 43.650199 ] ], [ [ -116.374518, 43.61438 ], [ -116.374517, 43.613788 ], [ -116.374296, 43.613809 ], [ -116.37383, 43.613809 ], [ -116.372904, 43.613411 ], [ -116.372903, 43.612154 ], [ -116.372021, 43.612158 ], [ -116.371925, 43.612158 ], [ -116.371928, 43.612263 ], [ -116.371928, 43.612568 ], [ -116.371928, 43.612583 ], [ -116.371928, 43.612851 ], [ -116.371927, 43.613117 ], [ -116.371929, 43.613689 ], [ -116.371927, 43.614218 ], [ -116.372315, 43.614381 ], [ -116.372466, 43.614381 ], [ -116.373733, 43.614382 ], [ -116.374216, 43.614382 ], [ -116.374302, 43.614382 ], [ -116.374518, 43.61438 ] ], [ [ -116.372387, 43.572248 ], [ -116.372799, 43.572533 ], [ -116.372904, 43.572292 ], [ -116.374478, 43.573046 ], [ -116.374524, 43.573068 ], [ -116.374619, 43.573116 ], [ -116.374622, 43.573552 ], [ -116.374632, 43.575724 ], [ -116.374633, 43.575724 ], [ -116.376845, 43.575704 ], [ -116.374618, 43.572976 ], [ -116.374616, 43.572788 ], [ -116.374614, 43.572239 ], [ -116.374613, 43.572097 ], [ -116.372646, 43.572098 ], [ -116.372387, 43.572248 ] ], [ [ -116.374569, 43.584785 ], [ -116.374572, 43.583974 ], [ -116.372431, 43.583988 ], [ -116.37243, 43.584398 ], [ -116.372511, 43.584398 ], [ -116.37278, 43.58479 ], [ -116.374476, 43.584781 ], [ -116.374569, 43.584785 ] ], [ [ -116.372508, 43.630231 ], [ -116.374349, 43.630228 ], [ -116.374349, 43.62969 ], [ -116.372452, 43.629694 ], [ -116.372508, 43.630231 ] ], [ [ -116.376096, 43.648423 ], [ -116.376097, 43.648382 ], [ -116.375429, 43.648383 ], [ -116.374579, 43.648385 ], [ -116.374578, 43.648454 ], [ -116.374493, 43.648454 ], [ -116.374496, 43.649144 ], [ -116.374497, 43.649622 ], [ -116.374497, 43.649628 ], [ -116.374605, 43.649629 ], [ -116.375042, 43.649637 ], [ -116.376019, 43.650006 ], [ -116.376096, 43.650006 ], [ -116.376096, 43.648465 ], [ -116.376096, 43.648423 ] ], [ [ -116.374529, 43.622436 ], [ -116.375518, 43.622436 ], [ -116.375518, 43.62303 ], [ -116.378137, 43.623019 ], [ -116.378142, 43.623019 ], [ -116.378178, 43.623019 ], [ -116.378179, 43.623019 ], [ -116.37818, 43.623019 ], [ -116.378181, 43.623019 ], [ -116.378226, 43.623019 ], [ -116.378385, 43.623018 ], [ -116.378386, 43.623018 ], [ -116.378388, 43.623018 ], [ -116.378389, 43.623018 ], [ -116.37839, 43.623018 ], [ -116.378391, 43.623018 ], [ -116.378392, 43.623018 ], [ -116.378815, 43.623017 ], [ -116.378815, 43.620771 ], [ -116.377903, 43.620769 ], [ -116.377894, 43.62072 ], [ -116.377871, 43.62068 ], [ -116.377794, 43.62063 ], [ -116.37774, 43.620613 ], [ -116.377682, 43.620607 ], [ -116.377589, 43.620606 ], [ -116.377583, 43.620108 ], [ -116.376099, 43.620111 ], [ -116.376099, 43.620654 ], [ -116.37535, 43.620653 ], [ -116.375354, 43.620964 ], [ -116.374531, 43.620968 ], [ -116.374519, 43.620968 ], [ -116.374519, 43.622436 ], [ -116.374529, 43.622436 ] ], [ [ -116.374526, 43.602602 ], [ -116.374525, 43.603323 ], [ -116.376318, 43.603306 ], [ -116.376322, 43.60299 ], [ -116.376273, 43.60289 ], [ -116.376151, 43.602638 ], [ -116.376153, 43.602569 ], [ -116.376147, 43.602586 ], [ -116.374526, 43.602602 ] ], [ [ -116.376714, 43.648368 ], [ -116.376714, 43.64838 ], [ -116.378022, 43.648376 ], [ -116.378021, 43.648286 ], [ -116.378027, 43.646563 ], [ -116.378005, 43.646563 ], [ -116.376732, 43.646566 ], [ -116.37672, 43.646566 ], [ -116.376719, 43.64686 ], [ -116.376719, 43.64698 ], [ -116.376719, 43.647063 ], [ -116.376718, 43.6472 ], [ -116.376718, 43.647293 ], [ -116.376718, 43.647337 ], [ -116.376717, 43.647475 ], [ -116.376717, 43.647612 ], [ -116.376717, 43.647749 ], [ -116.376716, 43.647886 ], [ -116.376716, 43.648023 ], [ -116.376715, 43.64816 ], [ -116.376715, 43.648256 ], [ -116.376715, 43.648289 ], [ -116.376714, 43.648368 ] ], [ [ -116.379768, 43.65509 ], [ -116.379769, 43.655638 ], [ -116.38194, 43.655628 ], [ -116.38195, 43.648367 ], [ -116.381861, 43.648367 ], [ -116.380576, 43.64837 ], [ -116.380576, 43.648355 ], [ -116.380574, 43.648367 ], [ -116.379289, 43.64837 ], [ -116.379285, 43.648373 ], [ -116.379202, 43.648384 ], [ -116.379196, 43.648385 ], [ -116.379196, 43.648457 ], [ -116.379196, 43.64858 ], [ -116.379196, 43.648621 ], [ -116.379196, 43.649085 ], [ -116.379196, 43.649304 ], [ -116.379196, 43.649386 ], [ -116.379196, 43.649523 ], [ -116.379196, 43.649743 ], [ -116.379196, 43.649962 ], [ -116.379196, 43.650182 ], [ -116.379196, 43.650296 ], [ -116.379196, 43.650511 ], [ -116.379197, 43.651041 ], [ -116.379197, 43.651355 ], [ -116.379197, 43.651469 ], [ -116.379198, 43.651687 ], [ -116.3792, 43.651961 ], [ -116.379201, 43.652174 ], [ -116.379201, 43.652181 ], [ -116.37898, 43.652181 ], [ -116.378974, 43.652181 ], [ -116.378981, 43.653327 ], [ -116.379809, 43.653335 ], [ -116.379801, 43.653347 ], [ -116.379792, 43.65336 ], [ -116.379785, 43.653372 ], [ -116.379778, 43.653385 ], [ -116.37977, 43.653397 ], [ -116.379764, 43.65341 ], [ -116.379756, 43.653423 ], [ -116.37975, 43.653436 ], [ -116.379744, 43.653449 ], [ -116.379738, 43.653462 ], [ -116.379732, 43.653475 ], [ -116.379727, 43.653488 ], [ -116.379721, 43.653501 ], [ -116.379716, 43.653514 ], [ -116.379711, 43.653527 ], [ -116.379707, 43.653541 ], [ -116.379702, 43.653554 ], [ -116.379698, 43.653567 ], [ -116.379694, 43.653581 ], [ -116.37969, 43.653594 ], [ -116.379687, 43.653608 ], [ -116.379684, 43.653621 ], [ -116.379681, 43.653635 ], [ -116.379678, 43.653649 ], [ -116.379676, 43.653662 ], [ -116.379674, 43.653676 ], [ -116.379672, 43.653689 ], [ -116.37967, 43.653703 ], [ -116.379669, 43.653717 ], [ -116.379668, 43.65373 ], [ -116.379667, 43.653744 ], [ -116.379666, 43.653758 ], [ -116.379666, 43.653772 ], [ -116.379666, 43.653788 ], [ -116.379667, 43.654806 ], [ -116.379664, 43.654819 ], [ -116.379658, 43.654832 ], [ -116.37964, 43.654848 ], [ -116.379626, 43.654857 ], [ -116.379614, 43.654867 ], [ -116.379602, 43.654878 ], [ -116.379593, 43.65489 ], [ -116.379586, 43.654903 ], [ -116.379579, 43.654916 ], [ -116.379576, 43.654929 ], [ -116.379573, 43.654943 ], [ -116.379573, 43.654956 ], [ -116.379574, 43.65497 ], [ -116.379577, 43.654984 ], [ -116.379583, 43.654997 ], [ -116.37959, 43.65501 ], [ -116.379598, 43.655022 ], [ -116.379609, 43.655033 ], [ -116.37962, 43.655044 ], [ -116.379634, 43.655054 ], [ -116.379648, 43.655062 ], [ -116.379664, 43.65507 ], [ -116.379681, 43.655077 ], [ -116.379698, 43.655082 ], [ -116.379716, 43.655086 ], [ -116.379735, 43.655088 ], [ -116.379768, 43.65509 ] ], [ [ -116.382397, 43.637425 ], [ -116.382912, 43.637424 ], [ -116.383451, 43.637419 ], [ -116.383593, 43.637419 ], [ -116.384199, 43.637417 ], [ -116.3845, 43.637412 ], [ -116.384501, 43.637412 ], [ -116.384504, 43.637412 ], [ -116.384701, 43.637411 ], [ -116.384702, 43.637411 ], [ -116.386969, 43.637406 ], [ -116.386984, 43.635463 ], [ -116.386987, 43.635068 ], [ -116.385748, 43.635068 ], [ -116.385758, 43.633771 ], [ -116.385665, 43.633771 ], [ -116.385664, 43.633903 ], [ -116.385664, 43.634248 ], [ -116.385568, 43.634251 ], [ -116.384724, 43.634252 ], [ -116.384722, 43.634953 ], [ -116.384097, 43.634953 ], [ -116.384097, 43.634954 ], [ -116.383288, 43.634837 ], [ -116.382936, 43.634838 ], [ -116.382934, 43.634389 ], [ -116.383343, 43.634388 ], [ -116.383323, 43.633775 ], [ -116.382952, 43.633776 ], [ -116.382858, 43.633776 ], [ -116.382791, 43.633776 ], [ -116.382115, 43.633779 ], [ -116.382115, 43.633647 ], [ -116.382116, 43.633619 ], [ -116.382115, 43.633234 ], [ -116.382114, 43.633087 ], [ -116.381541, 43.633088 ], [ -116.38139, 43.633088 ], [ -116.38139, 43.63312 ], [ -116.38139, 43.633305 ], [ -116.381391, 43.633658 ], [ -116.381392, 43.633747 ], [ -116.381392, 43.633781 ], [ -116.380954, 43.633783 ], [ -116.380889, 43.633783 ], [ -116.380897, 43.635744 ], [ -116.380896, 43.635744 ], [ -116.380859, 43.635744 ], [ -116.380255, 43.635744 ], [ -116.379517, 43.635747 ], [ -116.379516, 43.635913 ], [ -116.379516, 43.635983 ], [ -116.379514, 43.636461 ], [ -116.37951, 43.637432 ], [ -116.380157, 43.63743 ], [ -116.380853, 43.637429 ], [ -116.380853, 43.63743 ], [ -116.382397, 43.637425 ] ], [ [ -116.380691, 43.612078 ], [ -116.380694, 43.611221 ], [ -116.381265, 43.611214 ], [ -116.381261, 43.612071 ], [ -116.382017, 43.612062 ], [ -116.382431, 43.612059 ], [ -116.382432, 43.611992 ], [ -116.382435, 43.610968 ], [ -116.382843, 43.610964 ], [ -116.382839, 43.611987 ], [ -116.382838, 43.612056 ], [ -116.383258, 43.612051 ], [ -116.383258, 43.611982 ], [ -116.383262, 43.610959 ], [ -116.384521, 43.610961 ], [ -116.384523, 43.610037 ], [ -116.384512, 43.608937 ], [ -116.383644, 43.608927 ], [ -116.383636, 43.610027 ], [ -116.382439, 43.610012 ], [ -116.38199, 43.610027 ], [ -116.381265, 43.610018 ], [ -116.381269, 43.608893 ], [ -116.379524, 43.60887 ], [ -116.379524, 43.608941 ], [ -116.379521, 43.611445 ], [ -116.380143, 43.610994 ], [ -116.380142, 43.611136 ], [ -116.380139, 43.612017 ], [ -116.380139, 43.612085 ], [ -116.380443, 43.612081 ], [ -116.380691, 43.612078 ] ], [ [ -116.379536, 43.601178 ], [ -116.379993, 43.601423 ], [ -116.380628, 43.601655 ], [ -116.381319, 43.601909 ], [ -116.38132, 43.601935 ], [ -116.381355, 43.60372 ], [ -116.381366, 43.604268 ], [ -116.381377, 43.604812 ], [ -116.381943, 43.604806 ], [ -116.384861, 43.604786 ], [ -116.384858, 43.602371 ], [ -116.384545, 43.602377 ], [ -116.384547, 43.601129 ], [ -116.379536, 43.601178 ] ], [ [ -116.384574, 43.58292 ], [ -116.384575, 43.580425 ], [ -116.382731, 43.579333 ], [ -116.382719, 43.579326 ], [ -116.382718, 43.579326 ], [ -116.380376, 43.577931 ], [ -116.380304, 43.577887 ], [ -116.379856, 43.57829 ], [ -116.379849, 43.578296 ], [ -116.379842, 43.578304 ], [ -116.379836, 43.578311 ], [ -116.37983, 43.578318 ], [ -116.379825, 43.578325 ], [ -116.379817, 43.578337 ], [ -116.379811, 43.578349 ], [ -116.379806, 43.57836 ], [ -116.379803, 43.578369 ], [ -116.379801, 43.578378 ], [ -116.379798, 43.578389 ], [ -116.379796, 43.578401 ], [ -116.379796, 43.578412 ], [ -116.379796, 43.578422 ], [ -116.379797, 43.578435 ], [ -116.379579, 43.57844 ], [ -116.379602, 43.582963 ], [ -116.384574, 43.58292 ] ], [ [ -116.38721, 43.593452 ], [ -116.387206, 43.59312 ], [ -116.387206, 43.593112 ], [ -116.387114, 43.593114 ], [ -116.385307, 43.593141 ], [ -116.385155, 43.593108 ], [ -116.384812, 43.593108 ], [ -116.38478, 43.593123 ], [ -116.384659, 43.593143 ], [ -116.384589, 43.593163 ], [ -116.38455, 43.593188 ], [ -116.384549, 43.593435 ], [ -116.384548, 43.593579 ], [ -116.384548, 43.593745 ], [ -116.384543, 43.593745 ], [ -116.384112, 43.593745 ], [ -116.381223, 43.593745 ], [ -116.381208, 43.593745 ], [ -116.381299, 43.593864 ], [ -116.381543, 43.593862 ], [ -116.384548, 43.593831 ], [ -116.384548, 43.593792 ], [ -116.384548, 43.593775 ], [ -116.384549, 43.593775 ], [ -116.38458, 43.593775 ], [ -116.384587, 43.593775 ], [ -116.384766, 43.593828 ], [ -116.384772, 43.593829 ], [ -116.384961, 43.593831 ], [ -116.385157, 43.59383 ], [ -116.385526, 43.593749 ], [ -116.387213, 43.593749 ], [ -116.38721, 43.593452 ] ], [ [ -116.391053, 43.626489 ], [ -116.391033, 43.62545 ], [ -116.391033, 43.625449 ], [ -116.390499, 43.62529 ], [ -116.390359, 43.625247 ], [ -116.390279, 43.625154 ], [ -116.38948, 43.624168 ], [ -116.38949, 43.624739 ], [ -116.38949, 43.625302 ], [ -116.38949, 43.625864 ], [ -116.38949, 43.626509 ], [ -116.38949, 43.626517 ], [ -116.389999, 43.626512 ], [ -116.390009, 43.626512 ], [ -116.391054, 43.626502 ], [ -116.391053, 43.626489 ] ], [ [ -116.389491, 43.631974 ], [ -116.389495, 43.633701 ], [ -116.390131, 43.633702 ], [ -116.390603, 43.633701 ], [ -116.391076, 43.633701 ], [ -116.391994, 43.6337 ], [ -116.39199, 43.632899 ], [ -116.39199, 43.632898 ], [ -116.391387, 43.632896 ], [ -116.391386, 43.632595 ], [ -116.391386, 43.632594 ], [ -116.391386, 43.632455 ], [ -116.391385, 43.632206 ], [ -116.391381, 43.630926 ], [ -116.391381, 43.630924 ], [ -116.391087, 43.630963 ], [ -116.390906, 43.631031 ], [ -116.390721, 43.631171 ], [ -116.390454, 43.631475 ], [ -116.390314, 43.63158 ], [ -116.389681, 43.631957 ], [ -116.389491, 43.631974 ] ], [ [ -116.391599, 43.588768 ], [ -116.391995, 43.588764 ], [ -116.391971, 43.588475 ], [ -116.391535, 43.588474 ], [ -116.391574, 43.588505 ], [ -116.391599, 43.588768 ] ], [ [ -116.391599, 43.588768 ], [ -116.391454, 43.588541 ], [ -116.390867, 43.587985 ], [ -116.390944, 43.587932 ], [ -116.390744, 43.587754 ], [ -116.390659, 43.587805 ], [ -116.390461, 43.587622 ], [ -116.390261, 43.587438 ], [ -116.390258, 43.587438 ], [ -116.390215, 43.587449 ], [ -116.389861, 43.587651 ], [ -116.390016, 43.587794 ], [ -116.38999, 43.587802 ], [ -116.389966, 43.587814 ], [ -116.389945, 43.587828 ], [ -116.389928, 43.587845 ], [ -116.38956, 43.587505 ], [ -116.389559, 43.587546 ], [ -116.389558, 43.588246 ], [ -116.389559, 43.588253 ], [ -116.389557, 43.590151 ], [ -116.391351, 43.590133 ], [ -116.391712, 43.59013 ], [ -116.391599, 43.588768 ] ], [ [ -116.390631, 43.55376 ], [ -116.390687, 43.554147 ], [ -116.390707, 43.554174 ], [ -116.390935, 43.554445 ], [ -116.390937, 43.554637 ], [ -116.393653, 43.55462 ], [ -116.393653, 43.554565 ], [ -116.393755, 43.554564 ], [ -116.393881, 43.554565 ], [ -116.393885, 43.553742 ], [ -116.393885, 43.553719 ], [ -116.393883, 43.55374 ], [ -116.390631, 43.55376 ] ], [ [ -116.391455, 43.583834 ], [ -116.393798, 43.583812 ], [ -116.393802, 43.582842 ], [ -116.393538, 43.582845 ], [ -116.393554, 43.582319 ], [ -116.393807, 43.582319 ], [ -116.39381, 43.581566 ], [ -116.392545, 43.581563 ], [ -116.391848, 43.581569 ], [ -116.391865, 43.582631 ], [ -116.391654, 43.582632 ], [ -116.391638, 43.58263 ], [ -116.391627, 43.582627 ], [ -116.391614, 43.582621 ], [ -116.391601, 43.582612 ], [ -116.391593, 43.582604 ], [ -116.391587, 43.582594 ], [ -116.391574, 43.582578 ], [ -116.391574, 43.582577 ], [ -116.391564, 43.582568 ], [ -116.391553, 43.58256 ], [ -116.391541, 43.582551 ], [ -116.391521, 43.582541 ], [ -116.39151, 43.582537 ], [ -116.3915, 43.582534 ], [ -116.391488, 43.582531 ], [ -116.391467, 43.582526 ], [ -116.391453, 43.582525 ], [ -116.391439, 43.582524 ], [ -116.391427, 43.582524 ], [ -116.39141, 43.582525 ], [ -116.391398, 43.582527 ], [ -116.391383, 43.58253 ], [ -116.391363, 43.582535 ], [ -116.391353, 43.582539 ], [ -116.391343, 43.582543 ], [ -116.391325, 43.582552 ], [ -116.391313, 43.582561 ], [ -116.391301, 43.58257 ], [ -116.391291, 43.58258 ], [ -116.391281, 43.582593 ], [ -116.391273, 43.582606 ], [ -116.391268, 43.582619 ], [ -116.391264, 43.58264 ], [ -116.391264, 43.582657 ], [ -116.39127, 43.58268 ], [ -116.391274, 43.58269 ], [ -116.391281, 43.582702 ], [ -116.391294, 43.582718 ], [ -116.391308, 43.58273 ], [ -116.39132, 43.582739 ], [ -116.391329, 43.582745 ], [ -116.391343, 43.582752 ], [ -116.391354, 43.582756 ], [ -116.391366, 43.582761 ], [ -116.391378, 43.582764 ], [ -116.391393, 43.582767 ], [ -116.391407, 43.582769 ], [ -116.391422, 43.582771 ], [ -116.391434, 43.582771 ], [ -116.391455, 43.583834 ] ], [ [ -116.393834, 43.57081 ], [ -116.393834, 43.570455 ], [ -116.393417, 43.570422 ], [ -116.393102, 43.570147 ], [ -116.392797, 43.569827 ], [ -116.392294, 43.569585 ], [ -116.391892, 43.570713 ], [ -116.391902, 43.570714 ], [ -116.393417, 43.570802 ], [ -116.393832, 43.570823 ], [ -116.393833, 43.570823 ], [ -116.393834, 43.570823 ], [ -116.393834, 43.57081 ] ], [ [ -116.394782, 43.659235 ], [ -116.394785, 43.658062 ], [ -116.39514, 43.658063 ], [ -116.39872, 43.658547 ], [ -116.39872, 43.658543 ], [ -116.398704, 43.657602 ], [ -116.398704, 43.6576 ], [ -116.397864, 43.657391 ], [ -116.39646, 43.657041 ], [ -116.395117, 43.656706 ], [ -116.394795, 43.656626 ], [ -116.394794, 43.655745 ], [ -116.393746, 43.655742 ], [ -116.393646, 43.655742 ], [ -116.393642, 43.655742 ], [ -116.393556, 43.655742 ], [ -116.393575, 43.657761 ], [ -116.393553, 43.657761 ], [ -116.393555, 43.659615 ], [ -116.393596, 43.659625 ], [ -116.394775, 43.659898 ], [ -116.394787, 43.659901 ], [ -116.394782, 43.659235 ] ], [ [ -116.393836, 43.575422 ], [ -116.393836, 43.575546 ], [ -116.393846, 43.575546 ], [ -116.394651, 43.575548 ], [ -116.394666, 43.575548 ], [ -116.394679, 43.575548 ], [ -116.394693, 43.575549 ], [ -116.394705, 43.57555 ], [ -116.394719, 43.575551 ], [ -116.394734, 43.575552 ], [ -116.394744, 43.575553 ], [ -116.394757, 43.575554 ], [ -116.394773, 43.575556 ], [ -116.394792, 43.575559 ], [ -116.394808, 43.575561 ], [ -116.394823, 43.575564 ], [ -116.394836, 43.575566 ], [ -116.394848, 43.575569 ], [ -116.394863, 43.575572 ], [ -116.39488, 43.575576 ], [ -116.394895, 43.57558 ], [ -116.394911, 43.575584 ], [ -116.394922, 43.575587 ], [ -116.394933, 43.575591 ], [ -116.394943, 43.575594 ], [ -116.394957, 43.575598 ], [ -116.394974, 43.575604 ], [ -116.394989, 43.57561 ], [ -116.395002, 43.575615 ], [ -116.395014, 43.57562 ], [ -116.395027, 43.575626 ], [ -116.395028, 43.575626 ], [ -116.395044, 43.575633 ], [ -116.395058, 43.575639 ], [ -116.395069, 43.575645 ], [ -116.395082, 43.575651 ], [ -116.395094, 43.575658 ], [ -116.395103, 43.575663 ], [ -116.395113, 43.575669 ], [ -116.395114, 43.575669 ], [ -116.395124, 43.575675 ], [ -116.395289, 43.575776 ], [ -116.395297, 43.575781 ], [ -116.395305, 43.575787 ], [ -116.395314, 43.575793 ], [ -116.395324, 43.575799 ], [ -116.395336, 43.575807 ], [ -116.395353, 43.575817 ], [ -116.395364, 43.575823 ], [ -116.395365, 43.575823 ], [ -116.395376, 43.57583 ], [ -116.395389, 43.575837 ], [ -116.395399, 43.575842 ], [ -116.395412, 43.575849 ], [ -116.395423, 43.575854 ], [ -116.395435, 43.575861 ], [ -116.395449, 43.575867 ], [ -116.395459, 43.575872 ], [ -116.395472, 43.575878 ], [ -116.395488, 43.575885 ], [ -116.395506, 43.575893 ], [ -116.395524, 43.5759 ], [ -116.395538, 43.575906 ], [ -116.395553, 43.575912 ], [ -116.395567, 43.575917 ], [ -116.395578, 43.575921 ], [ -116.395588, 43.575924 ], [ -116.395601, 43.575929 ], [ -116.395614, 43.575933 ], [ -116.395629, 43.575938 ], [ -116.395645, 43.575943 ], [ -116.395657, 43.575947 ], [ -116.395668, 43.57595 ], [ -116.39568, 43.575954 ], [ -116.395691, 43.575957 ], [ -116.395703, 43.57596 ], [ -116.395716, 43.575964 ], [ -116.39573, 43.575968 ], [ -116.395745, 43.575971 ], [ -116.395762, 43.575976 ], [ -116.395782, 43.57598 ], [ -116.395796, 43.575983 ], [ -116.395806, 43.575985 ], [ -116.395817, 43.575988 ], [ -116.395829, 43.57599 ], [ -116.395843, 43.575993 ], [ -116.395857, 43.575995 ], [ -116.395872, 43.575998 ], [ -116.395889, 43.576001 ], [ -116.395905, 43.576003 ], [ -116.39592, 43.576006 ], [ -116.395932, 43.576007 ], [ -116.395947, 43.576009 ], [ -116.395961, 43.576011 ], [ -116.397888, 43.576236 ], [ -116.397901, 43.576237 ], [ -116.397916, 43.576239 ], [ -116.39793, 43.57624 ], [ -116.397943, 43.576241 ], [ -116.397954, 43.576242 ], [ -116.397969, 43.576243 ], [ -116.397985, 43.576243 ], [ -116.397998, 43.576244 ], [ -116.39801, 43.576244 ], [ -116.398023, 43.576244 ], [ -116.398034, 43.576244 ], [ -116.398048, 43.576244 ], [ -116.398061, 43.576244 ], [ -116.398074, 43.576244 ], [ -116.39809, 43.576243 ], [ -116.398105, 43.576242 ], [ -116.398123, 43.576241 ], [ -116.398139, 43.57624 ], [ -116.398153, 43.576239 ], [ -116.398167, 43.576237 ], [ -116.398178, 43.576236 ], [ -116.39819, 43.576235 ], [ -116.398206, 43.576233 ], [ -116.398223, 43.57623 ], [ -116.398238, 43.576228 ], [ -116.39825, 43.576226 ], [ -116.398263, 43.576224 ], [ -116.398275, 43.576222 ], [ -116.398289, 43.576219 ], [ -116.398306, 43.576215 ], [ -116.398323, 43.576211 ], [ -116.398341, 43.576207 ], [ -116.398358, 43.576203 ], [ -116.398373, 43.576198 ], [ -116.398388, 43.576194 ], [ -116.398553, 43.576145 ], [ -116.398569, 43.57614 ], [ -116.398585, 43.576134 ], [ -116.398598, 43.576129 ], [ -116.398612, 43.576122 ], [ -116.398623, 43.576117 ], [ -116.398633, 43.576112 ], [ -116.398813, 43.57601 ], [ -116.399141, 43.575559 ], [ -116.399033, 43.575558 ], [ -116.39903, 43.575558 ], [ -116.398815, 43.575558 ], [ -116.398815, 43.574492 ], [ -116.398804, 43.574492 ], [ -116.398072, 43.574495 ], [ -116.397999, 43.574482 ], [ -116.39792, 43.574467 ], [ -116.397486, 43.57439 ], [ -116.397297, 43.574354 ], [ -116.397175, 43.574311 ], [ -116.396895, 43.574211 ], [ -116.396562, 43.574093 ], [ -116.396475, 43.574062 ], [ -116.39646, 43.574057 ], [ -116.396263, 43.573971 ], [ -116.396021, 43.573866 ], [ -116.395778, 43.573761 ], [ -116.395552, 43.573668 ], [ -116.395541, 43.573664 ], [ -116.395406, 43.573608 ], [ -116.395284, 43.573559 ], [ -116.395054, 43.573464 ], [ -116.394824, 43.57337 ], [ -116.394594, 43.573276 ], [ -116.394369, 43.573184 ], [ -116.39408, 43.573065 ], [ -116.393906, 43.573049 ], [ -116.393835, 43.573047 ], [ -116.393835, 43.574575 ], [ -116.393836, 43.574697 ], [ -116.393836, 43.575422 ] ], [ [ -116.395008, 43.596234 ], [ -116.395018, 43.595563 ], [ -116.395678, 43.595564 ], [ -116.396999, 43.595564 ], [ -116.398509, 43.595565 ], [ -116.398672, 43.595564 ], [ -116.398681, 43.594476 ], [ -116.398685, 43.593952 ], [ -116.398686, 43.593871 ], [ -116.39869, 43.593871 ], [ -116.398686, 43.593758 ], [ -116.398362, 43.593758 ], [ -116.397114, 43.593871 ], [ -116.395485, 43.594234 ], [ -116.395205, 43.594273 ], [ -116.395155, 43.59428 ], [ -116.395057, 43.594311 ], [ -116.394558, 43.594469 ], [ -116.393974, 43.594589 ], [ -116.393962, 43.595258 ], [ -116.393943, 43.595563 ], [ -116.393893, 43.596228 ], [ -116.394539, 43.596231 ], [ -116.395007, 43.596234 ], [ -116.395008, 43.596234 ] ], [ [ -116.401265, 43.633791 ], [ -116.401263, 43.632878 ], [ -116.401164, 43.632878 ], [ -116.401133, 43.631246 ], [ -116.401133, 43.631231 ], [ -116.400755, 43.631229 ], [ -116.400742, 43.631229 ], [ -116.400499, 43.631228 ], [ -116.400151, 43.631228 ], [ -116.398222, 43.631221 ], [ -116.398229, 43.633782 ], [ -116.400995, 43.633791 ], [ -116.40116, 43.633791 ], [ -116.401265, 43.633792 ], [ -116.401265, 43.633791 ] ], [ [ -116.403642, 43.599689 ], [ -116.403645, 43.598591 ], [ -116.403647, 43.597395 ], [ -116.404402, 43.597396 ], [ -116.404402, 43.596643 ], [ -116.403646, 43.596641 ], [ -116.403647, 43.59671 ], [ -116.403081, 43.59671 ], [ -116.402719, 43.596709 ], [ -116.402718, 43.597326 ], [ -116.402703, 43.597391 ], [ -116.402058, 43.597391 ], [ -116.401337, 43.59739 ], [ -116.399752, 43.597389 ], [ -116.399196, 43.597389 ], [ -116.399833, 43.598186 ], [ -116.402493, 43.599212 ], [ -116.402404, 43.599212 ], [ -116.403642, 43.599689 ] ], [ [ -116.403031, 43.591006 ], [ -116.403032, 43.590085 ], [ -116.401729, 43.590089 ], [ -116.401727, 43.591801 ], [ -116.401726, 43.593138 ], [ -116.401722, 43.593138 ], [ -116.401722, 43.593191 ], [ -116.403651, 43.593191 ], [ -116.403654, 43.591004 ], [ -116.403031, 43.591006 ] ], [ [ -116.403725, 43.631613 ], [ -116.40372, 43.630116 ], [ -116.406154, 43.630127 ], [ -116.406143, 43.628861 ], [ -116.40371, 43.628854 ], [ -116.40367, 43.628854 ], [ -116.403636, 43.628854 ], [ -116.403616, 43.628851 ], [ -116.403602, 43.628849 ], [ -116.403559, 43.628841 ], [ -116.403538, 43.628834 ], [ -116.40354, 43.629116 ], [ -116.403559, 43.629122 ], [ -116.403563, 43.629653 ], [ -116.403571, 43.630509 ], [ -116.403574, 43.630794 ], [ -116.403575, 43.631082 ], [ -116.403643, 43.631082 ], [ -116.403649, 43.631612 ], [ -116.403725, 43.631613 ] ], [ [ -116.412284, 43.608773 ], [ -116.412284, 43.608742 ], [ -116.408635, 43.608695 ], [ -116.408635, 43.608745 ], [ -116.408636, 43.609228 ], [ -116.408636, 43.609246 ], [ -116.409998, 43.609264 ], [ -116.412281, 43.609275 ], [ -116.412283, 43.609019 ], [ -116.412284, 43.608773 ] ], [ [ -116.411225, 43.637156 ], [ -116.411221, 43.636166 ], [ -116.410185, 43.636174 ], [ -116.410377, 43.636685 ], [ -116.410485, 43.636975 ], [ -116.410489, 43.637494 ], [ -116.410508, 43.637494 ], [ -116.412699, 43.637513 ], [ -116.411225, 43.637156 ] ], [ [ -116.413802, 43.65198 ], [ -116.411915, 43.651979 ], [ -116.411915, 43.65256 ], [ -116.413634, 43.652563 ], [ -116.413803, 43.652568 ], [ -116.413802, 43.65198 ] ], [ [ -116.41229, 43.608194 ], [ -116.413638, 43.608213 ], [ -116.413638, 43.607778 ], [ -116.413639, 43.607224 ], [ -116.413487, 43.607226 ], [ -116.412296, 43.607209 ], [ -116.41229, 43.608194 ] ], [ [ -116.418667, 43.602649 ], [ -116.418665, 43.602465 ], [ -116.416155, 43.602965 ], [ -116.414903, 43.603218 ], [ -116.41374, 43.603433 ], [ -116.413646, 43.603432 ], [ -116.413644, 43.603885 ], [ -116.416153, 43.603895 ], [ -116.416155, 43.603141 ], [ -116.418665, 43.602649 ], [ -116.418667, 43.602649 ] ], [ [ -116.413661, 43.597338 ], [ -116.41617, 43.597349 ], [ -116.418678, 43.59736 ], [ -116.418679, 43.59736 ], [ -116.418678, 43.59742 ], [ -116.418677, 43.598224 ], [ -116.419246, 43.598229 ], [ -116.419809, 43.598233 ], [ -116.420381, 43.598237 ], [ -116.420382, 43.597438 ], [ -116.422849, 43.597448 ], [ -116.423695, 43.597451 ], [ -116.423704, 43.595018 ], [ -116.423077, 43.595015 ], [ -116.42308, 43.593806 ], [ -116.423708, 43.593809 ], [ -116.423708, 43.593762 ], [ -116.42371, 43.593458 ], [ -116.42872, 43.593456 ], [ -116.428724, 43.593182 ], [ -116.428724, 43.592883 ], [ -116.428725, 43.591395 ], [ -116.428724, 43.591265 ], [ -116.428725, 43.591213 ], [ -116.428725, 43.590332 ], [ -116.428726, 43.590251 ], [ -116.428726, 43.590183 ], [ -116.428725, 43.590183 ], [ -116.425236, 43.59017 ], [ -116.425237, 43.590101 ], [ -116.425216, 43.590098 ], [ -116.425152, 43.590108 ], [ -116.425087, 43.590117 ], [ -116.425022, 43.590125 ], [ -116.424957, 43.590132 ], [ -116.424892, 43.590138 ], [ -116.424826, 43.590144 ], [ -116.424761, 43.590149 ], [ -116.424695, 43.590153 ], [ -116.42463, 43.590156 ], [ -116.424564, 43.590158 ], [ -116.424498, 43.590159 ], [ -116.424392, 43.59016 ], [ -116.423721, 43.590166 ], [ -116.42121, 43.590155 ], [ -116.421214, 43.589171 ], [ -116.42122, 43.587721 ], [ -116.420524, 43.587719 ], [ -116.420276, 43.587718 ], [ -116.42027, 43.589231 ], [ -116.420265, 43.590154 ], [ -116.419144, 43.590152 ], [ -116.417161, 43.590145 ], [ -116.417146, 43.593462 ], [ -116.41367, 43.593464 ], [ -116.413669, 43.593441 ], [ -116.413661, 43.597338 ] ], [ [ -116.414881, 43.637923 ], [ -116.414878, 43.637526 ], [ -116.416236, 43.637531 ], [ -116.416227, 43.63572 ], [ -116.415208, 43.635716 ], [ -116.413923, 43.63571 ], [ -116.413904, 43.635711 ], [ -116.413828, 43.635711 ], [ -116.413734, 43.635705 ], [ -116.413744, 43.637519 ], [ -116.413747, 43.637521 ], [ -116.413747, 43.637919 ], [ -116.414881, 43.637923 ] ], [ [ -116.415196, 43.634212 ], [ -116.418103, 43.634796 ], [ -116.418103, 43.633918 ], [ -116.415197, 43.633908 ], [ -116.415199, 43.634031 ], [ -116.415196, 43.634212 ] ], [ [ -116.420389, 43.611987 ], [ -116.420389, 43.612055 ], [ -116.420389, 43.612081 ], [ -116.420383, 43.612641 ], [ -116.420381, 43.612826 ], [ -116.420373, 43.61438 ], [ -116.421133, 43.61454 ], [ -116.421312, 43.614595 ], [ -116.42154, 43.614658 ], [ -116.421551, 43.614661 ], [ -116.421565, 43.614666 ], [ -116.421578, 43.61467 ], [ -116.421588, 43.614674 ], [ -116.421601, 43.614679 ], [ -116.421617, 43.614687 ], [ -116.421629, 43.614693 ], [ -116.421639, 43.614698 ], [ -116.42165, 43.614704 ], [ -116.42166, 43.61471 ], [ -116.42167, 43.614717 ], [ -116.421679, 43.614723 ], [ -116.421687, 43.614729 ], [ -116.421696, 43.614735 ], [ -116.421826, 43.614841 ], [ -116.422496, 43.615323 ], [ -116.422887, 43.61561 ], [ -116.423644, 43.615609 ], [ -116.423654, 43.612001 ], [ -116.420389, 43.611986 ], [ -116.420389, 43.611987 ] ], [ [ -116.428699, 43.633956 ], [ -116.427562, 43.633952 ], [ -116.427563, 43.633963 ], [ -116.427604, 43.63567 ], [ -116.428644, 43.635784 ], [ -116.428643, 43.635971 ], [ -116.428643, 43.636124 ], [ -116.428644, 43.636173 ], [ -116.428643, 43.636362 ], [ -116.428642, 43.636582 ], [ -116.428641, 43.636813 ], [ -116.42864, 43.637021 ], [ -116.428638, 43.637405 ], [ -116.428616, 43.637421 ], [ -116.428443, 43.637545 ], [ -116.428052, 43.637544 ], [ -116.427701, 43.637542 ], [ -116.427437, 43.637541 ], [ -116.427173, 43.63754 ], [ -116.426901, 43.637539 ], [ -116.426636, 43.637538 ], [ -116.426357, 43.637537 ], [ -116.426198, 43.637536 ], [ -116.426198, 43.637548 ], [ -116.426197, 43.637571 ], [ -116.426198, 43.637571 ], [ -116.428683, 43.637581 ], [ -116.428684, 43.637581 ], [ -116.428696, 43.63597 ], [ -116.428696, 43.635961 ], [ -116.428692, 43.635789 ], [ -116.428692, 43.635769 ], [ -116.428699, 43.63397 ], [ -116.428699, 43.633956 ] ], [ [ -116.433668, 43.656097 ], [ -116.433569, 43.656097 ], [ -116.433572, 43.65708 ], [ -116.433664, 43.657084 ], [ -116.435331, 43.657151 ], [ -116.435333, 43.657151 ], [ -116.435379, 43.656868 ], [ -116.434254, 43.656425 ], [ -116.433668, 43.656097 ] ], [ [ -116.435295, 43.640331 ], [ -116.435242, 43.639419 ], [ -116.433638, 43.639413 ], [ -116.433637, 43.639413 ], [ -116.433628, 43.640326 ], [ -116.433629, 43.640326 ], [ -116.433722, 43.640326 ], [ -116.433723, 43.640326 ], [ -116.433798, 43.640326 ], [ -116.435295, 43.640331 ] ], [ [ -116.447403, 43.618287 ], [ -116.4474, 43.617556 ], [ -116.447385, 43.617556 ], [ -116.447385, 43.617526 ], [ -116.446152, 43.617535 ], [ -116.446139, 43.618421 ], [ -116.446148, 43.618421 ], [ -116.446329, 43.618422 ], [ -116.446518, 43.618423 ], [ -116.446707, 43.618423 ], [ -116.446896, 43.618424 ], [ -116.447083, 43.618425 ], [ -116.447284, 43.618425 ], [ -116.447397, 43.618426 ], [ -116.447397, 43.618429 ], [ -116.4474, 43.618724 ], [ -116.447401, 43.618845 ], [ -116.447404, 43.619191 ], [ -116.447404, 43.61925 ], [ -116.447409, 43.619305 ], [ -116.447875, 43.619306 ], [ -116.447871, 43.618288 ], [ -116.447403, 43.618287 ] ], [ [ -116.453593, 43.662866 ], [ -116.453593, 43.662976 ], [ -116.456879, 43.66298 ], [ -116.458533, 43.662982 ], [ -116.458533, 43.662987 ], [ -116.458533, 43.663682 ], [ -116.458533, 43.663696 ], [ -116.458534, 43.663683 ], [ -116.458537, 43.663683 ], [ -116.460045, 43.663684 ], [ -116.460045, 43.662985 ], [ -116.463472, 43.662988 ], [ -116.463491, 43.662988 ], [ -116.463476, 43.662987 ], [ -116.463249, 43.662987 ], [ -116.46326, 43.66118 ], [ -116.458542, 43.661173 ], [ -116.458545, 43.658174 ], [ -116.453592, 43.658175 ], [ -116.453591, 43.660264 ], [ -116.450331, 43.660253 ], [ -116.450331, 43.660255 ], [ -116.450332, 43.660745 ], [ -116.450331, 43.661206 ], [ -116.450331, 43.661207 ], [ -116.452697, 43.661206 ], [ -116.452698, 43.661206 ], [ -116.453405, 43.661206 ], [ -116.453593, 43.661205 ], [ -116.453593, 43.662866 ] ], [ [ -116.453588, 43.633902 ], [ -116.453589, 43.633629 ], [ -116.454686, 43.633632 ], [ -116.454687, 43.63322 ], [ -116.453591, 43.633217 ], [ -116.453594, 43.632271 ], [ -116.453502, 43.632271 ], [ -116.453427, 43.632271 ], [ -116.453238, 43.632271 ], [ -116.452936, 43.63227 ], [ -116.452813, 43.63227 ], [ -116.452634, 43.63227 ], [ -116.452332, 43.632269 ], [ -116.452028, 43.632271 ], [ -116.452028, 43.632273 ], [ -116.452033, 43.632852 ], [ -116.451067, 43.632856 ], [ -116.451837, 43.633185 ], [ -116.452775, 43.633526 ], [ -116.452775, 43.633527 ], [ -116.453213, 43.633804 ], [ -116.453412, 43.633877 ], [ -116.453588, 43.633902 ] ], [ [ -116.456162, 43.627397 ], [ -116.454541, 43.626673 ], [ -116.453616, 43.626666 ], [ -116.453614, 43.62739 ], [ -116.456162, 43.627397 ] ], [ [ -116.45645, 43.619402 ], [ -116.456121, 43.619401 ], [ -116.456114, 43.621188 ], [ -116.456109, 43.621191 ], [ -116.456108, 43.621191 ], [ -116.45617, 43.621192 ], [ -116.457374, 43.621194 ], [ -116.457377, 43.619473 ], [ -116.457381, 43.619404 ], [ -116.45645, 43.619402 ] ] ], [ [ [ -116.346931, 43.633798 ], [ -116.346947, 43.632115 ], [ -116.347033, 43.632107 ], [ -116.348241, 43.632104 ], [ -116.349451, 43.632102 ], [ -116.349562, 43.632107 ], [ -116.349554, 43.633005 ], [ -116.349445, 43.632999 ], [ -116.349441, 43.63379 ], [ -116.348233, 43.633794 ], [ -116.346931, 43.633798 ] ] ] ] }\"\n        },\n        {\n            \"name\": \"Pinwheel\",\n            \"group_id\": 31810853,\n            \"geometry_id\": 545394,\n            \"total_members\": null,\n            \"type\": \"neighborhood\",\n            \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -116.93438063080346, 32.795657080108512 ], [ -116.935773563366283, 32.78151439845967 ], [ -116.939898831437546, 32.767915212135293 ], [ -116.946597903278729, 32.755382130239305 ], [ -116.955613337315881, 32.744396792080337 ], [ -116.966598675474842, 32.735381358043192 ], [ -116.979131757370837, 32.728682286202002 ], [ -116.992730943695221, 32.724557018130739 ], [ -117.006873625344056, 32.723164085567916 ], [ -117.021016306992891, 32.724557018130739 ], [ -117.034615493317276, 32.728682286202002 ], [ -117.047148575213271, 32.735381358043192 ], [ -117.058133913372231, 32.744396792080337 ], [ -117.067149347409384, 32.755382130239305 ], [ -117.073848419250567, 32.767915212135293 ], [ -117.07797368732183, 32.78151439845967 ], [ -117.079366619884652, 32.795657080108512 ], [ -117.07797368732183, 32.809799761757354 ], [ -117.073848419250567, 32.823398948081731 ], [ -117.067149347409384, 32.83593202997772 ], [ -117.058133913372231, 32.846917368136687 ], [ -117.047148575213271, 32.855932802173832 ], [ -117.034615493317276, 32.862631874015023 ], [ -117.021016306992891, 32.866757142086286 ], [ -117.006873625344056, 32.868150074649108 ], [ -116.992730943695221, 32.866757142086286 ], [ -116.979131757370837, 32.862631874015023 ], [ -116.966598675474842, 32.855932802173832 ], [ -116.955613337315881, 32.846917368136687 ], [ -116.946597903278729, 32.83593202997772 ], [ -116.939898831437546, 32.823398948081731 ], [ -116.935773563366283, 32.809799761757354 ], [ -116.93438063080346, 32.795657080108512 ] ] ] ] }\"\n        },\n        {\n            \"name\": \"Sombrero\",\n            \"group_id\": 31810848,\n            \"geometry_id\": 545393,\n            \"total_members\": null,\n            \"type\": \"neighborhood\",\n            \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -73.966593005459401, 40.189023 ], [ -73.967985938022224, 40.174880318351157 ], [ -73.972111206093487, 40.16128113202678 ], [ -73.97881027793467, 40.148748050130791 ], [ -73.987825711971823, 40.137762711971824 ], [ -73.998811050130783, 40.128747277934679 ], [ -74.011344132026778, 40.122048206093488 ], [ -74.024943318351163, 40.117922938022225 ], [ -74.039086, 40.116530005459403 ], [ -74.053228681648832, 40.117922938022225 ], [ -74.066827867973217, 40.122048206093488 ], [ -74.079360949869212, 40.128747277934679 ], [ -74.090346288028172, 40.137762711971824 ], [ -74.099361722065325, 40.148748050130791 ], [ -74.106060793906508, 40.16128113202678 ], [ -74.110186061977771, 40.174880318351157 ], [ -74.111578994540594, 40.189023 ], [ -74.110186061977771, 40.203165681648841 ], [ -74.106060793906508, 40.216764867973218 ], [ -74.099361722065325, 40.229297949869206 ], [ -74.090346288028172, 40.240283288028174 ], [ -74.079360949869212, 40.249298722065319 ], [ -74.066827867973217, 40.255997793906509 ], [ -74.053228681648832, 40.260123061977772 ], [ -74.039086, 40.261515994540595 ], [ -74.024943318351163, 40.260123061977772 ], [ -74.011344132026778, 40.255997793906509 ], [ -73.998811050130783, 40.249298722065319 ], [ -73.987825711971823, 40.240283288028174 ], [ -73.97881027793467, 40.229297949869206 ], [ -73.972111206093487, 40.216764867973218 ], [ -73.967985938022224, 40.203165681648841 ], [ -73.966593005459401, 40.189023 ] ] ] ] }\"\n        },\n        {\n            \"name\": \"Whirlpool\",\n            \"group_id\": 31810844,\n            \"geometry_id\": 545392,\n            \"total_members\": null,\n            \"type\": \"neighborhood\",\n            \"geometry\": \"{ \\\"type\\\": \\\"MultiPolygon\\\", \\\"coordinates\\\": [ [ [ [ -117.071279005459402, 32.774508 ], [ -117.072671938022225, 32.760365318351155 ], [ -117.076797206093488, 32.746766132026778 ], [ -117.083496277934671, 32.73423305013079 ], [ -117.092511711971824, 32.723247711971823 ], [ -117.103497050130784, 32.714232277934677 ], [ -117.116030132026779, 32.707533206093487 ], [ -117.129629318351164, 32.703407938022224 ], [ -117.143772, 32.702015005459401 ], [ -117.157914681648833, 32.703407938022224 ], [ -117.171513867973218, 32.707533206093487 ], [ -117.184046949869213, 32.714232277934677 ], [ -117.195032288028173, 32.723247711971823 ], [ -117.204047722065326, 32.73423305013079 ], [ -117.210746793906509, 32.746766132026778 ], [ -117.214872061977772, 32.760365318351155 ], [ -117.216264994540595, 32.774508 ], [ -117.214872061977772, 32.788650681648839 ], [ -117.210746793906509, 32.802249867973217 ], [ -117.204047722065326, 32.814782949869205 ], [ -117.195032288028173, 32.825768288028172 ], [ -117.184046949869213, 32.834783722065318 ], [ -117.171513867973218, 32.841482793906508 ], [ -117.157914681648833, 32.845608061977771 ], [ -117.143772, 32.847000994540593 ], [ -117.129629318351164, 32.845608061977771 ], [ -117.116030132026779, 32.841482793906508 ], [ -117.103497050130784, 32.834783722065318 ], [ -117.092511711971824, 32.825768288028172 ], [ -117.083496277934671, 32.814782949869205 ], [ -117.076797206093488, 32.802249867973217 ], [ -117.072671938022225, 32.788650681648839 ], [ -117.071279005459402, 32.774508 ] ] ] ] }\"\n        }\n    ]\n}"}],"_postman_id":"4066f2f7-2dd5-4547-801a-db113db281cb"},{"name":"Create comment to a post / Create reply to a comment","id":"38c5e254-1b5b-4046-a892-f9560281db29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"{post_id}\",\n    \"body_text\": \"example body\",\n    \"parent_comment_id\": \"{parent comment_id}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/comment/","description":"<p>Creates a comment on an existing Nextdoor post. Data field description:</p>\n<p><code>id (string)</code>: <strong>[required]</strong> ID of the post that the comment/reply will be created in.</p>\n<p><code>parent_comment_id (string)</code>: <em>[optional]</em> ID of the comment that the reply will be created in. This argument should only be used if creating a reply to a comment.</p>\n<p><code>body_text (string)</code>: <strong>[required]</strong> Text that will appear in comment.</p>\n<p><code>media_attachments (array[string])</code>: <em>[optional]</em> Media links that will appear in comment. Images and videos are the only supported formats. The strings must be valid media urls. You can attach a max of 10 media attachments and media order will persist in the comment.</p>\n<p>The Max file size for photos is 10MB. The Max file size for videos is 500MB per video.<br />These are the supported file types below. We do auto resize images and videos to fit the newsfeed.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Images: ('.gif', '.jpe', '.jpg', '.jpeg', '.png', '.tif', '.tiff', '.webp') \nVideos: ('.mov', '.avi', '.mpg', '.mpeg', '.mp4', '.m4v')\n\n</code></pre>","urlObject":{"protocol":"https","path":["external","api","partner","v1","comment",""],"host":["nextdoor","com"],"query":[],"variable":[]}},"response":[{"id":"833c4b44-f0c0-4245-b013-93fea38d09b6","name":"Create comment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{post_id}\",\n    \"body_text\": \"example body\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"share_link\" \"https://nextdoor.com/p/{post_share_id}/c/{comment_id}/\n}"},{"id":"eb7577bd-162f-4d26-8b57-2b968f91f3f1","name":"Create a reply to a comment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{post_id}\",\n    \"body_text\": \"example body\",\n    \"parent_comment_id\": \"{parent comment_id}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\"\n    \"share_link\" \"https://nextdoor.com/p/{share_id}/c/{comment_id}/\n}"}],"_postman_id":"38c5e254-1b5b-4046-a892-f9560281db29"},{"name":"Edit a post","id":"13e22ed4-cfea-4d96-8017-1f1b54515120","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"{post_id}\",\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example hashtag\",\n    \"lat\": 37.88849697199503,\n    \"lon\": -122.20632563637744,\n    \"smartlink_url\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/","description":"<p>*Editing FSF and Event post is coming soon*</p>\n<p>Edits your neighbor or agency post on Nextdoor. Data field description:</p>\n<p><code>id (string)</code>: <strong>[required]</strong> ID of the post that will be edited.</p>\n<p><code>body_text (string)</code>: <em>[optional]</em> Text that will appear in post, Posts body text cannot be longer than 8,192 bytes/characters.</p>\n<p><code>hashtag (string)</code>: <em>[optional]</em> Hashtag that will appear in post. This field cannot contain spaces.</p>\n<p><code>lat (float)</code>: <em>[optional]</em> Latitude to generate a geo location on the post</p>\n<p><code>lon (float)</code>: <em>[optional]</em> Longitude to generate a geo location on the post</p>\n<p><em>Note: You must supply both latitude and longitude to support location</em></p>\n<p><code>smartlink_url (string)</code>: _[optional] Smartlink url that will generate a clickable preview below the post. The string must be a valid url.</p>\n<p>Rules:</p>\n<ol>\n<li>All urls have to be publicly accessible</li>\n<li>One of the following is required: <code>body_text</code>, <code>hashtag,</code> <code>lat/lon</code>, or <code>smartlink_url</code></li>\n</ol>\n","urlObject":{"protocol":"https","path":["external","api","partner","v1","post",""],"host":["nextdoor","com"],"query":[],"variable":[]}},"response":[{"id":"ae519bc8-e159-4a9e-959f-c4e4bfb8d2a1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{post_id}\",\n    \"body_text\": \"example body\",\n    \"hashtag\": \"example hashtag\",\n    \"lat\": 37.88849697199503,\n    \"lon\": -122.20632563637744,\n    \"smartlink_url\": \"example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/create/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\"\n}"}],"_postman_id":"13e22ed4-cfea-4d96-8017-1f1b54515120"},{"name":"Edit a comment","id":"1edcbc98-eea1-49f8-9ead-e4ca471ef416","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"{comment_id}\",\n    \"body_text\": \"example body\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/comment/","description":"<p>Edits your comment on Nextdoor. Data field description:</p>\n<p><code>id (string)</code>: <strong>[required]</strong> ID of the comment that will be edited.</p>\n<p><code>body_text (string)</code>: <em>[optional]</em> Text that will appear in comment.</p>\n","urlObject":{"protocol":"https","path":["external","api","partner","v1","comment",""],"host":["nextdoor","com"],"query":[],"variable":[]}},"response":[{"id":"8d17220f-2843-42d8-b20f-cbd37b88abe3","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"ndbr_at","value":"AQUpuBwWa1SpLgTlG2UwOWyVD8_1jxX_vGOjg68Ka64","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{comment_id}\",\n    \"body_text\": \"example body\"\n}","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/comment/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\"\n}"}],"_postman_id":"1edcbc98-eea1-49f8-9ead-e4ca471ef416"},{"name":"Delete a post","id":"6c394ac8-004a-43da-8e11-42e1ae7d4910","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/post/?id={{post_id}}","description":"<p>Deletes your post on Nextdoor that matches the post id provided in the query parameter.</p>\n","urlObject":{"protocol":"https","path":["external","api","partner","v1","post",""],"host":["nextdoor","com"],"query":[{"key":"id","value":"{{post_id}}"}],"variable":[]}},"response":[{"id":"d7118937-e4ff-4b66-9a1c-42d9c64f60fc","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"test body\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://nextdoor.com/external/api/partner/v1/post/?id={{post_id}}","protocol":"https","host":["nextdoor","com"],"path":["external","api","partner","v1","post",""],"query":[{"key":"id","value":"{{post_id}}"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"6c394ac8-004a-43da-8e11-42e1ae7d4910"},{"name":"Delete a comment","id":"6250e910-583b-49cf-9792-6145249a4102","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://nextdoor.com/external/api/partner/v1/comment/?id={{comment_id}}","description":"<p>Deletes your comment on Nextdoor that matches the comment id provided in the query parameter.</p>\n","urlObject":{"protocol":"https","path":["external","api","partner","v1","comment",""],"host":["nextdoor","com"],"query":[{"key":"id","value":"{{comment_id}}"}],"variable":[]}},"response":[{"id":"9cec1bec-3885-4c87-a799-38c79fbccdeb","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"body_text\": \"test body\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://nextdoor.com/external/api/partner/v1/comment/?id={{comment_id}}","protocol":"https","host":["nextdoor","com"],"path":["external","api","partner","v1","comment",""],"query":[{"key":"id","value":"{{comment_id}}"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"6250e910-583b-49cf-9792-6145249a4102"},{"name":"Introspect","id":"a7500b01-fbe1-4a66-a47d-dc6e298438b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{client_id}}"},{"key":"password","value":"{{client_secret}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"token","value":"{{access_token}}","type":"text"}]},"url":"https://auth.nextdoor.com/v2/introspect","urlObject":{"protocol":"https","path":["v2","introspect"],"host":["auth","nextdoor","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7500b01-fbe1-4a66-a47d-dc6e298438b4"},{"name":"Introspect Local","id":"c35a8a2b-6293-4c4c-95eb-f4ac9e2608d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{client_id}}"},{"key":"password","value":"{{client_secret}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"token","value":"{{access_token}}","type":"text"}]},"url":"http://localhost.com:8132/v2/introspect","urlObject":{"protocol":"http","port":"8132","path":["v2","introspect"],"host":["localhost","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c35a8a2b-6293-4c4c-95eb-f4ac9e2608d0"}],"event":[{"listen":"prerequest","script":{"id":"6bcf506e-cf9e-4407-bbea-0200162642ca","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"be6b7e0b-552f-439d-be3e-d4c92491a6b5","type":"text/javascript","exec":[""]}}],"variable":[{"key":"access_token","value":"{{access_token}}"}]}